高手,执行insert into select 语句慢,一般是什么原因造成的了
2017-09-09
展开全部
执行insert into select 语句慢,一般是什么原因造成的了
: 两条你要分开独立执行,或者两条一起执行不能把代码贴在一起! 而且你也没贴代码,不好判断
: 两条你要分开独立执行,或者两条一起执行不能把代码贴在一起! 而且你也没贴代码,不好判断
展开全部
在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'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询