Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear All,

I have a query about changing the column names of a table.

The table column has a names like F1,F2 etc. The actual names are in the first row of the table.

This happens because i imported a excel file into sql which has first row as a header.

so i want to change the column names like F1=Exchange,F2=Stock etc.

Is this possible to change all the columns name in one query?

Thanks & Regards.
Posted

1 solution

Yes use :
SQL
EXEC sp_rename 'database.tablename', 'oldname', 'newname';

http://msdn.microsoft.com/en-us/library/aa238878%28v=SQL.80%29.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900