MySQL Forums
Forum List  »  Newbie

Re: column rename?
Posted by: Jay Pipes
Date: June 24, 2005 02:34PM

ALTER TABLE YourTableName
CHANGE COLUMN `sum(op100)` `sumOp100` DOUBLE(17,0) NULL
, CHANGE COLUMN `sum(op700)` `sumOp700` DOUBLE(17,0) NULL
, CHANGE COLUMN `sum(total)` `sumTotal` DOUBLE(17,0) NULL;

Jay Pipes
Community Relations Manager, North America, MySQL Inc.

Got Cluster? http://www.mysql.com/cluster
Personal: http://jpipes.com

Options: ReplyQuote


Subject
Written By
Posted
June 24, 2005 02:23PM
Re: column rename?
June 24, 2005 02:34PM
June 27, 2005 01:01PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.