Viewing post 1 (of 1 total)
Try this
SELECT EmpID, EmpName from Employee
UNION
SELECT NULL AS EmpID, 'ALL' AS EmpName
ORDER BY EmpName
And SET default value as NULL
June 15, 2011 at 7:33 am
#1338967