Facing any issue with SQL Server, check this blog and if you don't find it leave the post and I will get back to you as soon as posible
How to rename table column using T-SQL
Again very simple just use system SP
SP_RENAME
Make sure that you are in same DB whose table’s column you want to change
EXEC sp_rename 'Schema.Table.ColumnName', 'NewName', 'COLUMN';
No comments:
Post a Comment