美文网首页
mysql查询表结构的语句

mysql查询表结构的语句

作者: 浩克啊12138 | 来源:发表于2020-03-30 10:05 被阅读0次

    select table_name,column_name,column_comment from information_schema.columns where table_schema ='表所在的库' and table_name = '要查看的表名' ;

    desc 表名;


    根据条件查看表名
    show tables like 'course%';

    image.png

    相关文章

      网友评论

          本文标题:mysql查询表结构的语句

          本文链接:https://www.haomeiwen.com/subject/afumuhtx.html