Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Stored Proc Problem
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Miscellaneous
Thread ID:
01394196
Message ID:
01394215
Views:
34
>This stored proc takes 2 optional params.
>
>
>
>CREATE PROCEDURE bm_GetClients
>	@CompanyKey		INT = NULL,
>	@ClientKey		INT = NULL
>
>AS
>BEGIN
>
>	SELECT *
>		FROM bm_Clients
>		WHERE CompanyKey = ISNULL(@CompanyKey, CompanyKey) OR
>			  ClientKey = ISNULL(@ClientKey, ClientKey)
>
>END
>
>
>I want to pass either, both, or none. I'm running it like this:
>
>
>DECLARE @CompanyKey	INT
>DECLARE @ClientKey	INT
>SET @CompanyKey = 2
>SET @ClientKey = 5
>
>EXEC bm_GetClients
>EXEC bm_GetClients @ClientKey
>EXEC bm_GetClients @CompanyKey, @ClientKey 
>EXEC bm_GetClients @CompanyKey
>
>
>In all cases I'm getting back all records. If I change the OR to AND, then the second run returns no records.

What would you get with

EXEC bm_GetClients @CompanyKey, NULL

and AND as your condition.

Also I prefer to use different syntax (@ClientKey IS NULL or ClientKey= @ClientKey)
If it's not broken, fix it until it is.


My Blog
Previous
Reply
Map
View

Click here to load this message in the networking platform