常用的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 :查看当前线程的运行情况
show variables:查看mysql服务器全局变量
show status: 服务器的运行状态信息
select database():显示当前连接的数据库 ,select db_name()
show index from tableName:查看索引的统计信息,相当于sqlserver 中dbcc SHOW_STATISTICS
--转自