mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-13 21:00:26 +08:00
3 lines
247 B
SQL
3 lines
247 B
SQL
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; |