关于insert语句中嵌套select语句

 我来答
干雨筠朱铄
2020-01-07 · TA获得超过2.9万个赞
知道大有可为答主
回答量:1.1万
采纳率:30%
帮助的人:643万
展开全部
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
宛天蓝楼赐
2020-01-05 · TA获得超过2.9万个赞
知道大有可为答主
回答量:1.1万
采纳率:28%
帮助的人:597万
展开全部
在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'
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式