In this article we learn how can we rename column name in sql server.
sp_rename 'tablename.oldcolumn_name', 'newcolumn_name', 'COLUMN';
0 Comments