Sorry for the edit...
I am trying to display Only 'Null' option when the user choose @select=2 on the drop down list of Parameters (MS SQL Server Report Builder). The parameter displays the type from watable by querying. The problem is that the table (watable) does not contain null value. Even if it contains the Null, how to display only null option on the drop down list???
--display type
IF @Select = 1
BEGIN
SELECT DISTINCT type
FROM watable
END
--display null
--display type
IF @Select = 2
BEGIN
SELECT DISTINCT type
FROM watable
END