查询所有库名
show databases
查询所有表名称
select table_name from information_schema.tables;
查询当前表的列名
select column_name from information_schema.COLUMNS where table_name = 'user_test'
查询所有库名
show databases
查询所有表名称
select table_name from information_schema.tables;
查询当前表的列名
select column_name from information_schema.COLUMNS where table_name = 'user_test'
本文标题:mysql查询 库名 表名 列名
本文链接:https://www.haomeiwen.com/subject/enykfqtx.html
网友评论