交换数据表两个字段值 | 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的主要内容,如果未能解决你的问题,请参考以下文章