Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Set only when variable has value
Message
 
 
À
27/02/2015 11:06:22
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2014
Application:
Web
Divers
Thread ID:
01615910
Message ID:
01615919
Vues:
30
>>Thank you.
>>
>>>Update column value by itself when @Location is empty
>>>
>>>CASE WHEN @Location <> '' THEN @Location ELSE Location END
>>>
>>>>
>>>>I have a SQL Stored procedure where a certain value is passed as character, as follows:
>>>>
>>>>
>>>>@Location char(20) = '',
>>>>
>>>>
>>>>Then the store procedure should update fields of a table; one of the fields is Location. But the field Location should be updated only if the passed variable @Location has value (not empty).
>>>>
>>>>Can I do it in one SQL Command (instead of using IF)? That is, how would I change the following expression?
>>>>
>>>>update MyTable set Field1 = @Field1, Field2 = @Field2, Location = @Location where Table_pk = 12
>>>>
>>>>
>>>>TIA
>
>As usual Sergey has given you an excellent solution.
>If you want a more VFP-like solution, I was pleased to learn recently that SQL server 2012 and later supports IIF(), with a syntax exactly like VFP's.

Since majority of my customers still use SQL 2008 (and one is still using SQL 2005) I won't use IIF() in my code. But I am making mental note for the future.
Thank you.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform