5 lines
268 B
MySQL
5 lines
268 B
MySQL
|
|
-- 看板性能优化:为 order_fund 添加组合索引
|
||
|
|
-- 用于聚合查询(充值/提现统计、月度趋势)
|
||
|
|
ALTER TABLE order_fund ADD INDEX idx_type_status (type, status);
|
||
|
|
ALTER TABLE order_fund ADD INDEX idx_type_status_time (type, status, create_time);
|