快速创建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'
本文介绍如何快速创建Memory表,并提供了一系列实用的操作指南,包括查看表状态、查看表索引、删除表索引以及显示所有表详细信息的方法。
868

被折叠的 条评论
为什么被折叠?



