一:查询指定数据库中所有的表名 数据库名:test select table_name from information_schema.tables where table_schema='test'; 如果想查询该schema下的所有信息,只要把table_name修改成 * 即可. 二:查询表结构信息 数据库名:test 表名:employee SELECT table_schema ,table_name ,column_name , column_type , data_type, co…