AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / dba / 问题 / 301321
Accepted
Yash
Yash
Asked: 2021-10-19 22:41:08 +0800 CST2021-10-19 22:41:08 +0800 CST 2021-10-19 22:41:08 +0800 CST

SQL Server:嵌套的 IF 3 级别

  • 772

每当在数据库中插入或更新数据时,我都会尝试更新我的控制表。为此,我创建了一个存储过程,它将获取表名(@TableName)、插入的行数(@InsertCount)和更新的行数(@UpdateCount)

我试图实现 3 级的嵌套 ifs,但存储过程不起作用。

谁能帮我理解存储过程可能有什么问题?

/*
A row is present in the control table   @InsertCount is greater than 0  @UpdateCount is greater than 0  Action
(True/False)    False   False   No action needs to be performed
False   False   True    Insert row in control table and set LastLoadDateTime and DWUpdateDate to current time
False   True    False   Insert row in control table and set LastLoadDateTime and DWInsertDate to current time
False   True    True    Insert row in control table and set LastLoadDateTime, DWUpdateDate, and DWInsertDate to current time
True    False   True    Update row in control table and set LastLoadDateTime and DWUpdateDate to current time
True    True    False   Update row in control table and set LastLoadDateTime and DWInsertDate to current time
True    True    True    Update row in control table and set LastLoadDateTime, DWUpdateDate, and DWInsertDate to current time
*/

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create procedure [schema].[StoredProcedure](@TableName nvarchar(50), @InsertCount bigint, @UpdateCount bigint)
as
    DECLARE @JobEndTime datetime;
    DECLARE @IsPresent bit;

    SET @JobEndTime = GETDATE();
    SET @IsPresent = (
        select top 1 COUNT(*)
        from schema.Control_Table
        where TableName = @TableName
    )

    if(@IsPresent = 0)
    BEGIN
        if(@InsertCount <> 0)
        BEGIN
            if(@UpdateCount <> 0)
                insert schema.Control_Table(TableName, LastLoadDateTime, DWInsertDate, DWUpdateDate)
                values (@TableName, @JobEndTime, @JobEndTime, @JobEndTime)
            else
                insert schema.Control_Table(TableName, LastLoadDateTime, DWInsertDate)
                values (@TableName, @JobEndTime, @JobEndTime)
        END
        else
        BEGIN
            if(@UpdateCount <> 0)
                insert schema.Control_Table(TableName, LastLoadDateTime, DWUpdateDate)
                values (@TableName, @JobEndTime, @JobEndTime)
        END
    END
    else
    BEGIN
        if(@InsertCount <> 0)
        BEGIN
            if(@UpdateCount <> 0)
                update schema.Control_Table
                set
                    LastLoadDateTime = @JobEndTime,
                    DWUpdateDate = @JobEndTime,
                    DWInsertDate = @JobEndTime
                where TableName = @TableName
            else
                update schema.Control_Table
                set
                    LastLoadDateTime = @JobEndTime,
                    DWInsertDate = @JobEndTime
                where TableName = @TableName
        END
        else
        BEGIN
            if(@UpdateCount <> 0)
                update schema.Control_Table
                set
                    LastLoadDateTime = @JobEndTime,
                    DWUpdateDate = @JobEndTime
                where TableName = @TableName
        END
    END
sql-server
  • 1 1 个回答
  • 85 Views

1 个回答

  • Voted
  1. Best Answer
    HandyD
    2021-10-21T14:07:35+08:002021-10-21T14:07:35+08:00

    您可以使用CTE和MERGE语句来简化存储过程,以避免需要使用嵌套的 IF 语句。有关工作示例,请参阅此db<>fiddle 。

    这是存储过程代码:

    CREATE PROCEDURE [sp] 
    (
      @TableName VARCHAR(100)
      , @InsertCount BIGINT
      , @UpdateCount BIGINT
    )
    AS
    BEGIN
      DECLARE @JobEndTime DATETIME = GETDATE()
      
      ;WITH InsertRecords AS
      (
        SELECT @TableName AS TableName
          , IIF(@InsertCount = 0, NULL, @JobEndTime) AS DWInsertDate -- NULL if no INSERTs otherwise, GETDATE()
          , IIF(@UpdateCount = 0, NULL, @JobEndTime)  AS DWUpdateDate -- NULL if no UPDATEs otherwise, GETDATE()
          , @JobEndTime AS JobEndTime
      )
      
      MERGE control_table AS target
      USING InsertRecords AS source ON (target.TableName = source.TableName)
      WHEN MATCHED THEN -- Existing record found for table
        UPDATE SET target.LastLoadDateTime = source.JobEndTime
          , target.DWInsertDate = COALESCE(source.DWInsertDate, target.DWInsertDate) -- If no INSERTs, then use existing value in table
          , target.DWUpdateDate = COALESCE(source.DWUpdateDate, target.DWUpdateDate) -- If no UPDATEs, then use existing value in table
      WHEN NOT MATCHED THEN -- No existing record for table
        INSERT (TableName, LastLoadDateTime, DWInsertdate, DWUpdateDate)
        VALUES (source.TableName, source.JobEndTime, source.DWInsertDate, source.DWUpdateDate)
      ;
    END
    

    其工作方式是 CTE 创建一个伪表,其中包含一行,其中包含表名称、最后加载日期时间、插入日期时间和更新日期时间的列。如果插入日期列的@InsertCount > 0,CTE 使用IIF 子句返回GETDATE(),使用@UpdateCount 的更新日期列也是如此。

    然后将此数据用作 MER​​GE 语句的源,该语句基本上执行 UPSERT。如果为提供的表名找到现有行,则更新日期列,如果未找到现有行,则插入新行。

    更新现有行的日期列的逻辑如下:

    • 如果计数变量为 0:
      • 如果控制表中存在现有值,则使用现有值,
      • 否则,使用 NULL
    • 如果计数大于 0:
      • 使用来自 CTE (GETDATE()) 的值。
    • 1

相关问题

  • SQL Server - 使用聚集索引时如何存储数据页

  • 我需要为每种类型的查询使用单独的索引,还是一个多列索引可以工作?

  • 什么时候应该使用唯一约束而不是唯一索引?

  • 死锁的主要原因是什么,可以预防吗?

  • 如何确定是否需要或需要索引

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    连接到 PostgreSQL 服务器:致命:主机没有 pg_hba.conf 条目

    • 12 个回答
  • Marko Smith

    如何让sqlplus的输出出现在一行中?

    • 3 个回答
  • Marko Smith

    选择具有最大日期或最晚日期的日期

    • 3 个回答
  • Marko Smith

    如何列出 PostgreSQL 中的所有模式?

    • 4 个回答
  • Marko Smith

    列出指定表的所有列

    • 5 个回答
  • Marko Smith

    如何在不修改我自己的 tnsnames.ora 的情况下使用 sqlplus 连接到位于另一台主机上的 Oracle 数据库

    • 4 个回答
  • Marko Smith

    你如何mysqldump特定的表?

    • 4 个回答
  • Marko Smith

    使用 psql 列出数据库权限

    • 10 个回答
  • Marko Smith

    如何从 PostgreSQL 中的选择查询中将值插入表中?

    • 4 个回答
  • Marko Smith

    如何使用 psql 列出所有数据库和表?

    • 7 个回答
  • Martin Hope
    Jin 连接到 PostgreSQL 服务器:致命:主机没有 pg_hba.conf 条目 2014-12-02 02:54:58 +0800 CST
  • Martin Hope
    Stéphane 如何列出 PostgreSQL 中的所有模式? 2013-04-16 11:19:16 +0800 CST
  • Martin Hope
    Mike Walsh 为什么事务日志不断增长或空间不足? 2012-12-05 18:11:22 +0800 CST
  • Martin Hope
    Stephane Rolland 列出指定表的所有列 2012-08-14 04:44:44 +0800 CST
  • Martin Hope
    haxney MySQL 能否合理地对数十亿行执行查询? 2012-07-03 11:36:13 +0800 CST
  • Martin Hope
    qazwsx 如何监控大型 .sql 文件的导入进度? 2012-05-03 08:54:41 +0800 CST
  • Martin Hope
    markdorison 你如何mysqldump特定的表? 2011-12-17 12:39:37 +0800 CST
  • Martin Hope
    Jonas 如何使用 psql 对 SQL 查询进行计时? 2011-06-04 02:22:54 +0800 CST
  • Martin Hope
    Jonas 如何从 PostgreSQL 中的选择查询中将值插入表中? 2011-05-28 00:33:05 +0800 CST
  • Martin Hope
    Jonas 如何使用 psql 列出所有数据库和表? 2011-02-18 00:45:49 +0800 CST

热门标签

sql-server mysql postgresql sql-server-2014 sql-server-2016 oracle sql-server-2008 database-design query-performance sql-server-2017

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve