牧羊岛

懒是不会有好果子吃滴//

导航

查看mysql表结构的几种方法

Posted on 2014-02-11 11:25  牧羊岛  阅读(250)  评论(0编辑  收藏  举报

desc 表名;

show columns from 表名;

describe 表名;

show create table 表名;

use information_schema
select * from columns where table_name='表名';