从事互联网开发、运营、设计、运维等工作。偏爱底层开发,服务器运维
全部博文(106)
发布时间:2016-06-03 15:06:11
mysql查看表结构命令,如下:desc 表名;show columns from 表名;describe 表名;show create table 表名;use information_schemaselect * from columns where table_name='表名';顺便记下:show databases;use 数据库名;show tables;创建数据库create database abc;.........【阅读全文】