How do check if a parameter is empty or null in Sql Server stored procedure in IF statement?

后端 未结 3 627
粉色の甜心
粉色の甜心 2021-02-07 02:13

I read this: How do I check if a Sql server string is null or empty but it not helped me in this situation.

The piece of code from my stored procedure:

I         


        
3条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-07 02:59

    To check if variable is null or empty use this:

    IF LEN(ISNULL(@var, '')) = 0
        -- Is empty or NULL
    ELSE
        -- Is not empty and is not NULL
    

提交回复
热议问题