交换数据表两个字段值 | SQL

Posted 窗边冷月光

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了交换数据表两个字段值 | SQL相关的知识,希望对你有一定的参考价值。

UPDATE temp_ent_lyew t1,temp_ent_lyew t2 SET t1.latitude=t1.longitude,t2.longitude=t2.latitude
where t1.latitude is not null and t1.longitude is not null and t2.latitude is not null and t2.longitude is not null 
and t1.latitude !=‘‘ and t1.longitude !=‘‘ and t2.latitude !=‘‘ and t2.longitude !=‘‘
and t1.longitude<100 and t2.latitude>100;

 

以上是关于交换数据表两个字段值 | SQL的主要内容,如果未能解决你的问题,请参考以下文章

sql拼接两个字段的值空格在哪

怎么用SQL语句同步两个表中的字段值?

Sql中如何将数据表的两个字段的值如何互换?

mysql 根据两个字段值查询时如何去除重复数据

SQL向所有行插入相同字段值

如何将两个不同数据库(MySQL、SQL SERVER)之间的 TEXT 字段与哈希值进行比较?