查询表

作者: 笔墨流年乱浮生 | 来源:发表于2018-08-17 01:14 被阅读0次

    查看所有数据表:

    show tables;
    
    结果:

    查表结构:

    desc table_name;
    
    结果:

    查表内容:

    select *from t_zjc;
    

    结果:


    查创建此表的SQL语句:

    show create table table_name;
    

    结果:


    相关文章

      网友评论

          本文标题:查询表

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