请教个sql语句 先查询有没有再插入

初学mysql想实现这样一个功能先查询表里有没有叫tom的如果没有那把id=1的人的名字改成tom怎么写在一条sql语句里呀报错[SQL]updateuser_table... 初学mysql
想实现这样一个功能
先查询表里有没有叫tom的
如果没有 那把id=1的人的名字改成tom
怎么写在一条sql语句里呀
报错
[SQL] update user_table set uname='p3' where uid='1' and (select count(1) from user_table where uname='p3')=0 ;
[Err] 1093 - You can't specify target table 'user_table' for update in FROM clause

似乎不能对同一个表查询后再更新 怎么办呢
展开
 我来答
prof_Hu
2010-08-03 · TA获得超过131个赞
知道答主
回答量:67
采纳率:0%
帮助的人:66.9万
展开全部
你们写的,逻辑性太强,对于初学者很难搞明白

建议这样写:

if not exists (select 1 from user_table where uname='tom')
begin
update user_table set uname='tom' where id=1
end
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
vinson_shen
2010-07-30 · TA获得超过2503个赞
知道小有建树答主
回答量:960
采纳率:100%
帮助的人:0
展开全部
mysql下像你这种情况只能分开来写:

select @row:=count(*) from 表 where uname='tom';
if @row=0 then
update 表 set uname='tom' where uid='1';
end if;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友6b7ae1585
2010-07-30
知道答主
回答量:14
采纳率:0%
帮助的人:7.6万
展开全部
update tabel1 set name='tom' where id=1 and (select count(1) from tabel1 where name='tom')=0
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友07f2face2
2010-07-30 · TA获得超过283个赞
知道小有建树答主
回答量:382
采纳率:50%
帮助的人:139万
展开全部
update user_table set uname='p3' where uid='1' and exsits (select '1' from user_table where uname='p3')
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友32ff50e
2010-07-30 · 超过36用户采纳过TA的回答
知道小有建树答主
回答量:167
采纳率:0%
帮助的人:0
展开全部
用存储过程,不知道MySql里有没有这个。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式