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
  • 相关阅读:
    命令用法示例
    Elastic:用Docker部署Elastic栈
    Elastic:使用Heartbeat进行Uptime监控
    Elastic:如何在一个机器上同时模拟多个node
    Elastic 使用索引生命周期管理实现热温冷架构
    Logstash:运用jdbc_streaming来丰富我们的数据
    Logstash:多个配置文件(conf)
    Logstash:处理多个input
    使用 Logstash 和 JDBC 确保 Elasticsearch 与关系型数据库保持同步
    Logstash:把MySQL数据导入到Elasticsearch中
  • 原文地址:https://www.cnblogs.com/gwazy/p/1191356.html
Copyright © 2011-2022 走看看