常用的show命令:
show culumns from TableName [from DBName] :返回指定表的列的相关信息,DESC TableName ,
相当于sqlserver 中 select object_name(Object_Id) from sys.columns
show tables:查看当前数据库中的表 select [name] from sys.tables
show databases:查看当前系统的数据库。 相当于sqlserver中的 select [name] from sys.databases
show create table tableName :得到指定表的文本
show table status:当前数据库中表的统计信息 ,在sqlserver中相当于 sys.tables
show full processlist :查看当前线程的运行情况:http://www.cnblogs.com/preftest/archive/2011/06/26/2090695.html
show variables:查看mysql服务器全局变量:http://hi.baidu.com/jackywdx/item/1fa3eb4c9f0377e01281da2f
show status: 服务器的运行状态信息 http://help.fireinter.com/database/mysql/20120417/53.html
show Innodb status: http://imysql.cn/2008_05_22_walk_through_show_innodb_status
select database():显示当前连接的数据库 ,select db_name()
show index from tableName:查看索引的统计信息,相当于sqlserver 中dbcc SHOW_STATISTICS 此命令会在后期做深入探讨
本文出自 “SQLServer MySQL” 博客,请务必保留此出处http://dwchaoyue.blog.51cto.com/2826417/1363165