SQL
Posted vincent_duan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL相关的知识,希望对你有一定的参考价值。
删除重复数据 :
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 b
SET
a.country_code = b.country_code
WHERE
a.event_country_zh = b.country_name;
以上是关于SQL的主要内容,如果未能解决你的问题,请参考以下文章