欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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='表名';