1. 程式人生 > >MySql 查詢數據庫中所有表名

MySql 查詢數據庫中所有表名

tables 數據 所有 columns sql 查詢 sql from ati col

查詢數據庫中所有表名
select table_name from information_schema.tables where table_schema=‘數據庫名‘ and table_type=‘base table‘;


查詢指定數據庫中指定表的所有字段名column_name
select column_name from information_schema.columns where table_schema=‘數據庫名‘ and table_name=‘表名‘

MySql 查詢數據庫中所有表名