zoukankan      html  css  js  c++  java
  • 判断临时表是否存在



        
    CREATE PROCEDURE SelectUserCurData 
    @user_fz int 
    AS
    declare @sql nvarchar(4000)

    declare @year int 

    set @year=year(getdate())
    set @user_fz=11
    if   object_id('tempdb..#tempUserTemple')   is   not   null   
    drop table #tempUserTemple
    CREATE TABLE #tempUserTemple(
    [title] [int] null,
    [House_Id] [int] NULL ,
    [User_Yj] [float] null,
    [User_Sj] [float] null,
    [User_Qf] [float] null
    )
    while (@year>2006)
    begin
    set @sql='
    if  exists(select * from sysobjects where id = OBJECT_ID(
    ''[HouseTemple'+cast(@year as nvarchar(4))+']'') and OBJECTPROPERTY(id, ''IsUserTable'') = 1)
         begin
         declare @tempyj float;
         declare @tempsj float;  
         SELECT  @tempyj=sum([House_Mj]*[House_Price]*[temple_month])
                   FROM HouseTemple
    '+cast(@year as nvarchar(4))+' where House_Id=1
         select  @tempsj=isnull(sum(invalue),0) from InDataList
    '+cast(@year as nvarchar(4))+' where House_Id=1
     Insert into  #tempUserTemple([title],[House_Id],[User_Yj],[User_Sj],[User_Qf])
    SELECT 
    2008,
    '+cast(@user_fz as nvarchar(4))+',
    @tempyj,
    @tempsj,
    @tempyj-@tempsj
    FROM UserTemple
    '+cast(@year as nvarchar(4))+'   where  User_Fz='+cast(@user_fz as nvarchar(4))+'
        end 
    '
    print @sql
    exec (@sql)
    set @year=@year-1;
    end

    select * from 
    (
    select * from  #tempUserTemple 
    union 
    select  title ,House_Id ,totle as User_Yj,yj as User_Sj ,(totle-yj) as User_Qf  from 
    (
    SELECT   Cur_Year as title ,[House_Id],[Totle],yj=isnull((select sum(InValue) from OldDataList   where Cur_User_Id=OldDataTemple.House_Id and InYear=OldDataTemple.Cur_Year),0
    FROM OldDataTemple 
    where House_Id=@user_fz 

    )d 
    )b
    order by title desc

    COMPUTE  SUM(User_Yj), sum(User_Sj), sum(User_Qf)

    GO
  • 相关阅读:
    44 软件开发中的一些思考
    43 编译原理及cmake使用手册学习
    42 github 开源代码 ——README.md语法/相关操作等
    41 软件工程实施-以数字化测量系统为例
    40 VSCode下.json文件的编写——(1) linux/g++ (2).json中参数与预定义变量的意义解释
    css3 3D盒子效果
    css3实现无缝滚动效果
    js一些方法的扩展
    扩展原生js的一些方法
    递归
  • 原文地址:https://www.cnblogs.com/gwazy/p/1191356.html
Copyright © 2011-2022 走看看