mysql如何查询表信息-LMLPHP

具体方法如下:

查询一个里面所有表的信息:

use information_scheam;
select * from tables where table_schema = "db_name";
登录后复制

查询单个表的信息:

use information_scheam;
select * from tables where table_schema = "db_name" and table_name = "table_name1";
登录后复制

查询一张表的所有字段信息:

use db_name;
show full columns from table_name1;
show full columns from table_name2;
登录后复制

本文来自Work网mysql图文教程频道,欢迎学习!

以上就是mysql如何查询表信息的详细内容,更多请关注Work网其它相关文章!

09-10 16:33