mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-14 05:10:24 +08:00
3 lines
247 B
MySQL
3 lines
247 B
MySQL
|
|
UPDATE `t_tag_tree` SET type = 5 WHERE type = 21 or type = 11;
|
||
|
|
UPDATE `t_tag_tree` SET code_path = REPLACE(code_path, '/11|', '/5|') WHERE type = 5;
|
||
|
|
UPDATE `t_tag_tree` SET code_path = REPLACE(code_path, '/21|', '/5|') WHERE type = 5 or type = 22;
|