I want to update some data in a specified case, else these fields are not to be updated.
What can i write code in a stored procedure for this?
|
|
I want to update some data in a specified case, else these fields are not to be updated. What can i write code in a stored procedure for this? |
||||
|
|
|
Use Case statement in Update clause like SQL Statement #6
Taken from SQL SERVER UPDATE Also you can go with if..else statement If you would have been in SQL SERVER 2008, you could have avail the flavor of MERGE statement |
||
|
|
|
|
May be you can build the condition in the update command and easily run more than one update with the diferent conditions. It may not be the most elegant way but it is prety eficient. It depends of your needs.
|
||
|
|
|
|
You can use a
Example:
|
||||||||||
|
|
|
Just an example:
|
|||
|
|