时间:2021-07-01 10:21:17 帮助过:2人阅读
删除重复数据 :
DELETE FROM country_code WHERE country_code NOT IN (SELECT * FROM (select max(country_code) from country_code group by country_name )as tmp );根据一个表的数据,更新另一个表的数据
UPDATE event_insert as a,country_code as bSET a.country_code = b.country_codeWHERE a.event_country_zh = b.country_name;
SQL
标签: