查看现在时间,now是函数
select now()
查看警告部分
show warnings;
输出a1表查询过程中的操作信息,
explain select * from a1;
***************************
1. row ***************************
id:
1
select_type: SIMPLE
table: a1
type: ALL
possible_keys: NULL #没有用索引
key: NULL
key_len: NULL
ref: NULL
rows:
6
#总共查询6行
-
Extra:
显示了有哪些线程在运行
show full processlist;
查看mysql有哪些用户
select user,host from mysql.user;
查看当前库有哪些表
show tables;
查询表建立时的语句
show create table 表名;
表格形式查看表结构
describe host;
查看s1表的结构,显示name字段
SHOW COLUMNS FROM s21 LIKE '%name';
查看当前支持存储引擎
show engines;
查看表信息,ENGINE表示当前表存储引擎,CHARSET默认语言
show create table 表名;
查看当前进入数据库的用户
select user();
查看当前时间区域,默认system东八区
show variables like 'time_zone';