首页 > 代码库 > 使用临时表的存储过程
使用临时表的存储过程
下面是一个使用临时表的存储过程例子
USE [JointFrame31_zw] GO /****** Object: StoredProcedure [dbo].[Proc_ZL_GetMonthFlow] Script Date: 2017/04/05 9:18:29 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: <水狼一族> -- Create date: <2017.04.05> -- Description: <查看全市污染物各月份的排放量情况> -- TSQL: Proc_ZL_GetMonthFlow -- ============================================= ALTER PROCEDURE [dbo].[Proc_ZL_GetMonthFlow] AS SET NOCOUNT ON begin --创建废水临时表 create table #w(MonitorDate varchar(6),CODFlow numeric(18,6),NH4Flow numeric(18,6)) --插入废水临时表 insert into #w exec [AutoMonitor].[dbo].Proc_Big_Get_Pollutant_Month_Data_Water --创建废气临时表 create table #g( MonitorDate varchar(6), YCFlow numeric(18,4), S02Flow numeric(18,4), NOXFlow numeric(18,4) ) --创建废气临时表 insert into #g exec [AutoMonitor].[dbo]. Proc_Big_Get_Pollutant_Month_Data_Gas select MonitorDate into #date from #w a union select b.MonitorDate from #g b select p.*,isnull(CODFlow,0) CODPercent,isnull(NH4Flow,0) NH4Percent,isnull(YCFlow,0) YCPercent, isnull(S02Flow,0) S02Percent,isnull(NOXFlow,0) NOXPercent from #date p left join #w a on p.MonitorDate = a.MonitorDate left join #g b on p.MonitorDate = b.MonitorDate truncate table #w drop table #w truncate table #g drop table #g truncate table #date drop table #date end
使用临时表的存储过程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。