MySQL 添加Index索引-数据库表数据量太大的方法-[企业级]

create table if not exists case_exec_step_copy
select *
from case_exec_step;

truncate table case_exec_step;

create index index_business
    on case_exec_step (report_no, case_no, step, current_times)
    comment '业务主键';

drop index index_createtime on case_exec_step;

insert into case_exec_step select * from case_exec_step_copy;

create table if not exists case_exec_step_page_copy
select *
from case_exec_step_page;

truncate table case_exec_step_page;

create index index_step_begin_time
    on case_exec_step_page (step_begin_time);


drop index index_createtime on case_exec_step_page;

insert into case_exec_step_page select * from case_exec_step_page_copy;
>#查看数据库系统的字符编码
show variables like '%character%' 

>#查看数据库系统的排序规则
show variables like '%collation%' 

>#查看数据库的字符集编码
show variables like 'character_set_database';

>#查看数据库.表的排序规则
show table status from dfsk_atp_vat like 'can_dtu_vin';

>#查看数据库.表.字段的排序规则
show full columns from dfsk_atp_vat.can_dtu_vin;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值