I know how to check if a parameter is null but i am not sure how to check if its empty ... I have these parameters and I want to check the previous parameters are empty or n
Here is the general pattern:
IF(@PreviousStartDate IS NULL OR @PreviousStartDate = '')
'' is an empty string in SQL Server.
''