sql >> Base de Datos >  >> RDS >> Sqlserver

Condiciones NULL en SQL Server

Debe pasar el valor del Combobox en @Status :

Aquí debe establecer condiciones como esta:

DECLARE @Status varchar(15)
--set the Status

SELECT * 
FROM tbl_Location
WHERE (@Status = 'All' 
       OR (@Status = 'Nulls' AND YEAR IS NULL) 
       OR (@Status = 'Not Nulls' AND YEAR IS NOT NULL)
      )