How to rename column using SQL query



sp_RENAME 'TableName.ColumnName' , 'NewColumnName', 'COLUMN'

0 Comments