I have a SQL Server 2005 stored procedure that performs a query. This stored procedure takes in three parameters. The parameters are as follows:
@Stat
c.StateID=@StateID AND c.CountyID = ISNULL(@CountyID, c.CountyID) ...
Use IF statements
Or
c.StateID=@StateID AND @CountyID IS NULL OR c.CountyID = @CountyID) ....
Or dynamic SQL
Or search SO for all the other question asking the same...