重复选择临时表
您好,
如何重复选择同一个临时表,然后返回完整结果。
就像
select
col1,
col2
into #temp
where
col4="abc"
and col5=10
select
col1,
col10
into #temp
where
col4="dbe"
and col5=15
select * from #temp
我尝试过的那样,它只返回了第一部分。
HI,
how can I select repeatedly into the same temporary table and then return the full outcome.
something like
select
col1,
col2
into #temp
where
col4="abc"
and col5=10
select
col1,
col10
into #temp
where
col4="dbe"
and col5=15
select * from #temp
I tried it, and it returned only the first part.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上面的代码应该会出错。
您应该在第一个 select into 之后插入。
试试这个:
The above code should end up in error.
You should insert into after the first select into.
Try this:
你也可以这样做
You could also do