查詢所有庫名
show databases
查詢所有表名稱
select table_name from information_schema.tables;
查詢當前表的列名
select column_name from information_schema.COLUMNS where table_name = 'user_test'
查詢所有庫名
show databases
查詢所有表名稱
select table_name from information_schema.tables;
查詢當前表的列名
select column_name from information_schema.COLUMNS where table_name = 'user_test'