Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 Transact-SQL (2008)
 Query Help

Author  Topic 

IK1972

56 Posts

Posted - 2013-02-28 : 16:57:08

I have one table with 5 columns

Comments, Table1, Table2, Table3, Table4
null, A, B, C, D
null, F, B, A, G
null, A, S, B, D
null, E, A, J, S

now i want to update like that

update t
set Comments = Comments + case when t.Table1 = 'A' then 'Table1--'
when t.Table2 = 'B' then 'Table2--'
from #temp

After update My Expected Result is

Comments, Table1, Table2, Table3, Table4
Table1--Table2, A, B, C, D
Table2, F, B, A, G
Table1, A, S, B, D
null, E, A, J, S

Please not suggest to check both column in same case as here I mention very simple condition actualy I have table with 150 columns and with different check and I want to mention comments when cretira match.

Thanks


robvolk
Most Valuable Yak

15732 Posts

Posted - 2013-02-28 : 17:43:28
Dupe:

http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=183369
Go to Top of Page
   

- Advertisement -