mysql怎么查看表结构

发布网友 发布时间:2022-03-24 22:09

我来回答

3个回答

热心网友 时间:2022-03-24 23:38

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;

热心网友 时间:2022-03-25 00:56

Online DDL 工具:pt-osc

对于 MySQL Online DDL 目前主流的有三种工具:

热心网友 时间:2022-03-25 02:31

desc 表名或
desc 库名.表名第一种就要切换到某个库才能查看,第二种不用。desc
是略写,是可以用的

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com