快速创建memory 表等
create table tsmemory engine=memory select * from tt
查看表状态
show table status like 'tsmemory' 看fix 表还是compact 表,这个可以行~~
查看表索引
show index from tsmemory
还可以这样查看索引使用情况。比explain sample一点
desc select * from tsmemory where con like 'bb%'/G
删除表索引
drop index index_name on tsmemory
显示所有表详细信息
show table status like 'tt'