I have table in MS SQL 2008 which has a column called Status. It can have "A" or "I" or "P" as values. I have a stored procedure which takes @Status as a parameter. If the parameter is null, I need to retrieve all the records where the status is either A or I or P (basically ignoring the Status field). If the paramenter is only A (for example), I need to get only records which have A as the status. How do I get this done in a single SELECT statement without IF.. ELSE?
-- This is just a snippet of a larger query.
-- Can the following be done without IF ELSE?
IF @Status = NULL
BEGIN
SELECT * FROM Person
END
ELSE SELECT * FROM Person WHERE Status = @Status
Edit: My goal is not to duplicate the same logic twice. The select statement has a bunch of joins and stuff, and I don't want to repeat it again in the else condition.
Edit #2: My bad - I checked the table again and it does contain records with NULL status, which I don't want. Here's the table -
Id Status
--------------
1 A
2 I
3 P
4 NULL
If @Status is "-1" (I'll default the parameter to -1), I want 1, 2, 3 records. How do I write the query?