May 10, 2004 #1 lhugh MIS Joined May 21, 2000 Messages 115 Location CA I would like to alter a column name of my table. Is it possible to do it?
May 10, 2004 #2 bastienk Programmer Joined Mar 3, 2004 Messages 326 Location CA yes....posted just yesterday ALTER TABLE t1 CHANGE a b COLUMN SETTINGS; --> eg. Code: Alter table tester change Blah blah VARCHAR(10); Bastien Cat, the other other white meat Upvote 0 Downvote
yes....posted just yesterday ALTER TABLE t1 CHANGE a b COLUMN SETTINGS; --> eg. Code: Alter table tester change Blah blah VARCHAR(10); Bastien Cat, the other other white meat
May 10, 2004 Thread starter #3 lhugh MIS Joined May 21, 2000 Messages 115 Location CA thanks Upvote 0 Downvote