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

后端 未结 3 637
粉色の甜心
粉色の甜心 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 03:01

    Of course that works; when @item1 = N'', it IS NOT NULL.

    You can define @item1 as NULL by default at the top of your stored procedure, and then not pass in a parameter.

提交回复
热议问题