• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

从select语句捕获变量的值

用户头像
it1352
帮助1

问题说明

大家好,



i希望从select语句中捕获变量中的所有值(例如像Employee中的Select *),并且稍后使用捕获的值在另一个询问中。

i已经尝试了很多,但我没有按照我的要求得到..

所以,请帮忙,如果有人有解决方案..



谢谢,

Raj

Hi All,

i want to capture all values in a variable from a select statement(i.e like Select * from Employee) and that captured values is later being used in another query.
i have tried a lot but i am not getting as per my requirement..
so, pls help, if any one has solution..

thanks,
Raj

正确答案

#1
嗨Raj,



根据您的要求,您可以使用表变量或临时表来存储输出数据。



例如:



Hi Raj,

As per your requirement you can use Table variable or Temporary table for Storing Output Data .

Eg :

Select * into #temp from Employee





以上查询创建临时表#temp并将Employee的输出存储到#temp表中



现在需要时要使用存储的数据,您只需将选择查询写为:







Above Query Create Temporary table #temp and Stores output from Employee into #temp table

Now when you want to use stored data, you can just write select Query as :


Select * from #temp







干杯!

Yogendra Dubey




Cheers !
Yogendra Dubey

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcgkjhk
系列文章
更多 icon
同类精品
更多 icon
继续加载