hi friends
I want to know how to rename column of any database table in result set in SQL Server ?
Thank you.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Jun 24, 2012, 4:51 PM
Satyapriya NayakPosted Jun 24, 2012, 12:16 PM
sp_RENAME 'TableName.[OldColumnName]' , '[NewColumnName]', 'COLUMN'
Thanks