2016 - 2024

感恩一路有你

sql命令查看表结构 mysql数据库怎么查看表结构?

浏览量:2758 时间:2021-03-11 05:04:08 作者:admin

mysql数据库怎么查看表结构?

MySQL 查看表结构简单命令。

一、简单描述表结构,字段类型desc tabl_name显示表结构,字段类型,主键,是否为空等属性,但不显示外键。

二、查询表中列的注释信息select * from information_schema.columns where table_schema = "db" #表所在数据库and table_name = "tablename" #你要查的表三、只查询列名和注释select column_name, column_comment from information_schema.columns where table_schema ="db" and table_name = "tablename" 四、#查看表的注释select table_name,table_comment from information_schema.tables where table_schema = "db" and table_name ="tablename"ps:二~四是在元数据表中查看,我在实际操作中,常常不灵光,不知为什么,有了解的大侠请留印。五、查看表生成的DDL show create table table_name

MySQL怎么查询树形结构的表的数据?

当然这种结构就不要追求什么效率了。如果要效率高的,只能改表结构。1:select p2.id from table p1 ,table p2 where p1.id=p2.pid and p1.id=0 2:假设表名是treeSQL codeselect distinct a.id from tree as a inner join tree as b on (a.pid = b.pid) where b.pid >=0select distinct a.id from tree as a inner join tree as b on (a.pid = b.pid) where b.pid >=23.通过程序或数据库的store procedure来实现了。 在mySQL中无法以一句SQL实现。

sql命令查看表结构 mysql怎么查看表的内容 mysql数据库查看表结构

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。