博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用SQL语句获得一个存储过程返回的表
阅读量:6154 次
发布时间:2019-06-21

本文共 529 字,大约阅读时间需要 1 分钟。

1. 定义一个表变量

declare @table table(

ReportType nvarchar(30),
ReportPath nvarchar(200),
ParaCnt int,
DataAreaID nvarchar(3),
Alias nvarchar(3),
ReliabilityPath nvarchar(200),
ReportStartDate nvarchar(10),
ReportEndDate nvarchar(11),
[subject] nvarchar(100)
)

2. 将存储过程执行的结果放入表变量中

insert into @table exec dbo.prc_ReliabilityRpt_toExp_v2 '2016-9-1','dh',1--

3. 从结果集查询

select *
from @table 
where DataAreaID = 'dh' and ReportType = 'Summary'

posted on
2016-09-05 11:02 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/sxypeace/p/5841533.html

你可能感兴趣的文章
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
js中var、let、const的区别
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>
Maven编译时跳过Test
查看>>
Spring Boot 整合Spring Security 和Swagger2 遇到的问题小结
查看>>
[20170628]12C ORA-54032.txt
查看>>
Linux磁盘管理和文件系统管理
查看>>
linux运维人员的成功面试总结案例分享
查看>>
Windows DHCP Server基于MAC地址过滤客户端请求实现IP地址的分配
查看>>
命令查询每个文件文件数
查看>>
《跟阿铭学Linux》第8章 文档的压缩与打包:课后习题与答案
查看>>