标签: sql prestashop
我的Prestashop安装中有一些不必要的语言注册。
我已经删除了所有语言,但是生成的记录仍然存在。
我需要从id_lang列的值除6以外的所有表中删除所有行,然后将id_lang等于6的所有表更改为1。
答案 0 :(得分:0)
要删除:
delete from TABLENAME where id_lang != 6
要更新:
update TABLENAME set id_lang=1 where id_lang=6