摘要:
创建表drop table if exists sequences;create table sequences( SEQUENCE_NAME varchar(80) not null comment '自增序列名称' primary key, INCREMENT_BY int not null c 阅读全文
摘要:
using index :使用覆盖索引的时候就会出现 using where:在查找使用索引的情况下,需要回表去查询所需的数据 using index condition:查找使用了索引,但是需要回表查询数据 using index & using where:查找使用了索引,但是需要的数据都在索引 阅读全文