-- 查询数据库名
select database();
-- 查询所有表名
select group_concat(table_name) from information_schema.tables where table_schema=database()
-- 查询所有列名
select group_concat(column_name) from information_schema.columns where table_schema=database() and table_name='???'
-- 如果只能输出一个字段的一个数值 那么可以使用limit 进行限制 如:select table_name from information_schema.tables where table_schema=database() limit 0,1
查询数据名,表名,列名
发布于 2023-03-27 284 次阅读
Comments NOTHING