insert语句嵌套select语句

这个总是提示错误insertintoVoteRecord(IP,TopicNum)values('"+ip+"',selectIDfromTopicwhere[Conte... 这个总是提示错误insert into VoteRecord(IP,TopicNum) values ('" + ip + "',select ID from Topic where [Content]='" + topic + "') 展开
 我来答
WHITE_WIN
推荐于2017-10-09 · TA获得超过6111个赞
知道大有可为答主
回答量:3759
采纳率:50%
帮助的人:1878万
展开全部
在VALUES子句中不能有子查询,这样就可以了:
insert into VoteRecord(IP,TopicNum) select '" + ip + "',ID from Topic where [Content]='" + topic + "'
实际生成的语句应该这样:
insert into VoteRecord(IP,TopicNum) select '192.168.1.1',ID from Topic where [Content]='123'
不过,为保证不发生错误,最好在子查询中加入TOP 1 子句或MAX()函数等,保证子查询记录是一条
insert into VoteRecord(IP,TopicNum) select '192.168.1.1',max(ID) from Topic where [Content]='123'
笑喘是病得抽
2018-07-31 · TA获得超过924个赞
知道大有可为答主
回答量:2140
采纳率:98%
帮助的人:2198万
展开全部
在VALUES子句中不能有子查询,这样就可以了:
insert into VoteRecord(IP,TopicNum) select '" + ip + "',ID from Topic where [Content]='" + topic + "'
实际生成的语句应该这样:
insert into VoteRecord(IP,TopicNum) select '192.168.1.1',ID from Topic where [Content]='123'
不过,为保证不发生错误,最好在子查询中加入TOP 1 子句或MAX()函数等,保证子查询记录是一条
insert into VoteRecord(IP,TopicNum) select '192.168.1.1',max(ID) from Topic where [Content]='123'
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Bol5261
2015-09-17 · TA获得超过8396个赞
知道大有可为答主
回答量:4368
采纳率:65%
帮助的人:806万
展开全部
在VALUES子句中不能有子查询,这样就可以了:
insert into VoteRecord(IP,TopicNum) select '" + ip + "',ID from Topic where [Content]='" + topic + "'
实际生成的语句应该这样:
insert into VoteRecord(IP,TopicNum) select '192.168.1.1',ID from Topic where [Content]='123'
不过,为保证不发生错误,最好在子查询中加入TOP 1 子句或MAX()函数等,保证子查询记录是一条
insert into VoteRecord(IP,TopicNum) select '192.168.1.1',max(ID) from Topic where [Content]='123'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Fanchap
2013-05-17
知道答主
回答量:6
采纳率:0%
帮助的人:4752
展开全部
insert into VoteRecord(IP,TopicNum) select '" + ip + "',ID from Topic where [Content]='" + topic + "';
commit;
'" + ip + "'可以为常量 ,也可以是变量,常量就会在每次插入的数据中都插入相同的值
例如
insert into cd_wellbore@kftest_LINK(well_id,wellbore_id,WB_SERIAL)
select well_id,well_id,’00’ from well_master 这其中的'00'就是在WB_SERIAL中始终插入00
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式