码迷,mamicode.com
首页 > 数据库 > 详细

MySQL与SqlServer中update操作同一个表问题

时间:2014-07-16 22:53:18      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   2014   

一 SqlServer中操作如下图

bubuko.com,布布扣

这个是没问题的。

二 MySQL中操作如下图

但是在MySQL中想实现这个功能如下图,但是出错了。

bubuko.com,布布扣

原来是MySQL中不支持子查询的

我们可以这样修改一下就可以实现它

bubuko.com,布布扣

看到没有,我仅仅在查询外面加了一层而已,却实现了。

代码如下:

create PROCEDURE testp(in _id int)
begin
  -- set @tt=(select id from usera where id>_id );
 update  usera set `names`=woaini where id in(select t.id from (select s.id from usera s where s.id>_id )t);
end 
call testp(2)

DROP PROCEDURE testp

select  * from  usera

MySQL与SqlServer的区别,需要慢慢发现。

 

MySQL与SqlServer中update操作同一个表问题,布布扣,bubuko.com

MySQL与SqlServer中update操作同一个表问题

标签:style   blog   http   color   strong   2014   

原文地址:http://www.cnblogs.com/annabook/p/3835481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!