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 |
|
OldMySQLUser
Constraint Violating Yak Guru
301 Posts |
Posted - 2008-02-03 : 11:37:21
|
| I have a script:UPDATE dbo.format_mortgage_event_historySET Amended_Completed_Date = '200' + SUBSTRING(Amended_Completed_Date,3,LEN(Amended_Completed_Date))WHERE LEFT(Amended_Completed_Date,2) = '10'for changing the date year format in a column.Is there a way I can reference a variable for the column name ('Amended_Completed_Date' in this case) at the beginning of the script instead of having the change Amended_Completed_Date four times when using this script for another column name? |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-02-03 : 13:00:52
|
| You need to use dynamic SQL for thatDECLARE @Sql varchar(8000)SET @Sql='UPDATE dbo.format_mortgage_event_historySET '+@ColName + '= ''200'' + SUBSTRING('+ @ColName +',3,LEN('+ @ColName +'))WHERE LEFT(' +@ColName + ',2) = ''10'''EXEC(@Sql)You may pass value of @ColName as a parameter to SP which has this script |
 |
|
|
OldMySQLUser
Constraint Violating Yak Guru
301 Posts |
Posted - 2008-02-03 : 13:02:41
|
| Got it! Many thanks visakh16. |
 |
|
|
|
|
|