#查看当前正在执行的sql语句
show processlist;
#查看用户的权限
show grants for real@ ‘192.168.80.%‘
#查询表的记录数
select count(*) from table_name;
#查询表结构
desc table_name;
show create table table_name\G
#查询索引
show index from table_name\G
#修改表的引擎
ALTER TABLE `zaoren_sid` ENGINE=InnoDB;
#更改字段名
alter table tbl_name change 旧字段 新字段 新字段类型;
本文出自 “寒江独钓” 博客,请务必保留此出处http://iter2012.blog.51cto.com/6873825/1613749
原文地址:http://iter2012.blog.51cto.com/6873825/1613749