×
新网 > 建站推广 > 正文

mysql如何查询表信息

  • 作者:zccc
  • 来源:网络
  • 2020-09-02 18:03:05

mysql查询表信息的方法:执行【select * from tables where table_schema = "db_name";】命令可以查看数据库中所有表的信息。具体方法如下:(视频教程推荐:mysql视频教程)查询一个

mysql查询表信息的方法:执行【select * from tables where table_schema = "db_name";】命令可以查看数据库中所有表的信息。

具体方法如下:

(视频教程推荐:mysql视频教程)

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

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";

(相关推荐:mysql教程)

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

use db_name;
show full columns from table_name1;
show full columns from table_name2;

  • 相关专题

免责声明:本文内容由互联网用户自发贡献自行上传,本网站不拥有所有权,也不承认相关法律责任。如果您发现本社区中有涉嫌抄袭的内容,请发送邮件至:operations@xinnet.com进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。

免费咨询获取折扣

Loading