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.
| Author |
Topic |
|
Arun.G
Yak Posting Veteran
81 Posts |
Posted - 2010-06-02 : 07:40:39
|
| my sample table:colum1 colum2 column31 abc manger2 xyz trainee3 rst emplike thatbut now i want to change the lowercase into uppercase in the same table same columnis it possible in sqlserver2008? |
|
|
Kristen
Test
22859 Posts |
Posted - 2010-06-02 : 07:51:02
|
| [code]UPDATE MyTableSET Column2 = Upper(Column2), Column3 = Upper(Column3), ...[/code]is that what you meant? |
 |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2010-06-03 : 04:30:23
|
| or, do it in SELECTSELECT upper(col1),....MadhivananFailing to plan is Planning to fail |
 |
|
|
|
|
|