码迷,mamicode.com
首页 > 数据库 > 详细

mysql - 查看表结构命令

时间:2021-03-10 12:59:11      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:语句   ddl   table   命令   rom   for   inf   表结构   format   

-- 查看表结构
desc 表名;

-- 查看表中字段的结构信息
select table_name,column_name,column_comment from information_schema.columns where table_schema =‘表所在的库‘ and table_name = ‘要查的表‘;

-- 查看库里面表的结构信息
select table_name,table_comment from information_schema.tables where table_schema = ‘表所在的库‘ and table_name =‘要查的表‘;

-- 查看表的DDL语句
show create table 表名;

mysql - 查看表结构命令

标签:语句   ddl   table   命令   rom   for   inf   表结构   format   

原文地址:https://www.cnblogs.com/gygtech/p/14505549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!