在SQL中如何向指定的某一行的某一列插入值
一个表有id,name,如何向指定的id插入nameinsertintotable(name)values('王五')whereid='1'错误,才知道insert不支持...
一个表有id,name ,如何向指定的id插入name
insert into table(name) values ('王五') where id='1' 错误,才知道insert不支持where ,请问如何解决??谢谢
其中name可以为空,也就是未插入前name=null 展开
insert into table(name) values ('王五') where id='1' 错误,才知道insert不支持where ,请问如何解决??谢谢
其中name可以为空,也就是未插入前name=null 展开
3个回答
展开全部
正确的语句如下:
update table set name='王五' where id='1'
主意例子里面的table、name都是仅仅是例子,实际中不应该使用关键字作为表和列的名字。
update table set name='王五' where id='1'
主意例子里面的table、name都是仅仅是例子,实际中不应该使用关键字作为表和列的名字。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用update
update table
set name='王五'
where table.id='1'
update table
set name='王五'
where table.id='1'
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
晕`~
update table_name set col_name='王五' where ID=1;
update table_name set col_name='王五' where ID=1;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询