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的主要内容,如果未能解决你的问题,请参考以下文章

sql [sql技巧]一些sql技巧#sql

sql 2008 r2 在sql 2008上兼容么

SQL基础

有大神知道,sql server 中如何批量执行sql语句吗?

pl sql developer怎么执行sql

pl sql developer怎么执行sql