View Single Post

  #2 (permalink)  
Old 04-25-2007, 03:03 AM
anwar_s1 anwar_s1 is offline
Junior Member
 
Join Date: Apr 2007
Posts: 2
anwar_s1 is on a distinguished road
Solution

Quote:
Originally Posted by jyaseena View Post
How can I change the name of the column ? and in big sized database design if I change the name of the column How can we solve this cumbersome task..?
First:


Alter table <tablename>

drop column <columnname>

Second:

Alter table <tablename>
add(<columnname> <datatype>)
Reply With Quote