You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RuoYi-Vue/sql_refacor0120/执行顺序及分表.ini

14 lines
461 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

执行顺序:需按以下顺序执行建表语句,避免外键依赖报错:
t_industry_index → t_stock_basic → t_stock_daily_trade及子表→ t_stock_high_low_status
分表扩展:
MySQL新增月份分区时执行 ALTER TABLE t_stock_daily_trade ADD PARTITION (...),示例:
ALTER TABLE t_stock_daily_trade ADD PARTITION (
PARTITION `p202504` VALUES LESS THAN (TO_DAYS('2025-05-01')) COMMENT '2025年4月数据'
);
-----------