一些工作中常用的mysql中的show命令的用法
show databases;
显示所有的数据库
show tables;/show tables from database_name;
显示当前数据库的数据表/显示指定数据库的数据表
show columns from table_name/database_name.table_name;
显示当前数据库数据表的列/指定数据库数据表的列
类似于desc database_name.table_name
;
show index from table_name/databsase_name.table_name;
显示当前数据库的数据表/指定数据库的数据表的索引
show create database_name;
显示指定数据库的创建数据库的详细信息
show create table table_name/database_name.table_name;
显示当前数据库/指定数据库的数据表的创建数据表的详细信息,可以通过此命令获取外键以及索引的名字,方便删除,还可以查看使用的数据库引擎
show processlist;
显示系统中正在运行的进程,没有权限的用户只能查看自己的进程,如果拥有process权限,就可以查看其他用户的进程
show table status; show table status from database_name;
显示当前数据库的数据表的信息;显示指定数据库数据表的信息
show status;
显示系统资源信息
show grants for user_name@ip;
显示指定用户的权限例:
show grants for root@localhost;
show variables;
显示系统变量的名称和值,列出的变量非常多,可以通过使用
like '字符串'
进行过滤(可以使用%通配)
show variables like '%char%';
显示当前使用的字符集
show character set;
显示数据库支持的字符集
show collation;
显示所有字符集的排序比较规则
show privileges;
显示服务器所支持的权限
show engines;
显示所支持的数据库引擎
show engine innodb status;
显示innodb数据库引擎的状态
show errors;
显示最后一条出现错误的执行语句显示的错误
show warnings;
显示最后一条出现警告的执行语句显示的警告
网友评论