Tuesday 6 April 2021

MSSQL - Rename column in table

Watch this example on YouTube


exec sp_rename 'TableName.CurrentColumnName', 'NewColumnName', 'COLUMN' 

No comments:

Post a Comment