MySQL 获取数据库中的所有表名和列名
程序员文章站
2024-03-21 08:15:16
...
sql语句在MySQL获取数据库里的所有表名:
select table_name from information_schema.tables where table_schema='数据库名'
sql语句在MySQL获取数据库表的所有列名:
select column_name from information_schema.columns where table_schema='数据库名' and table_name='表名';