关于insert语句中嵌套select语句
2个回答
展开全部
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
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
展开全部
在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'
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'
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询