MYSQL如何修改查询出来的结果集

2022/1/26 19:04:26

本文主要是介绍MYSQL如何修改查询出来的结果集,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

  update expresspackage  set IsUploadSto=-200  where BillCode in
   (
       SELECT BillCode from expresspackage where RealLatticeNo not in (224,448) and 
       `Status` = 0 and DownTime < '2022/1/26 15:29:03' and 
       createTime < '2022/1/26 15:29:03' and IsUploadSto > -20 and IsUploadSto < 1
   )
执行上诉语句出现You can't specify target table for update in FROM clause 不能在同一表中查询的数据作为同一表的更新数据。

改成下述语句就行

  update expresspackage  set IsUploadSto=-200  where BillCode in
   (
   SELECT a.BillCode from 
   (
   SELECT BillCode from expresspackage where RealLatticeNo not in (224,448) and 
   `Status` = 0 and DownTime < '2022/1/26 15:29:03' and 
   createTime < '2022/1/26 15:29:03' and IsUploadSto > -20 and IsUploadSto < 1
   ) a
   )
也就是说将select出的结果再通过中间表select一遍,这样就规避了错误。注意,这个问题只出现于mysql,mssql和Oracle不会出现此问题。

 



这篇关于MYSQL如何修改查询出来的结果集的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程