Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Where of Int type column with coalesce
Message
 
 
À
30/11/2009 17:59:48
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Stored procedures, Triggers, UDFs
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01437000
Message ID:
01437004
Vues:
60
This message has been marked as the solution to the initial question of the thread.
>Hi,
>
>How do you perform comparison of an integer (or smallint) type column to a value with COALESCE?
>
>For example, when in a stored procedure a parameter is optional I set the default value to NULL (if not passed). Then I use the following WHERE expression to return all rows if value not passed.
>
>
>select * from mytable where Col_IntType = COALESCE(@param1, Col_IntType)
>
>
>The above works but I was wondering if there is a better way.
>
>TIA.

I would write this condition as

select * from myTable where (@Param1 IS NULL or Col_IntType = @Param1)

In the first case, the records where Col_IntType are NULL are not returned. In the second case they are returned. If you don't have records with NULL values in your table, then both where expressions will return the exactly same results.
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform