vote up 1 vote down star

How to rename mysql column from help to content in my table tbl_help

mysql_query("ALTER TABLE tbl_help " . "CHANGE COLUMN help content;");
flag

2 Answers

vote up 1 vote down check

You've got to include the definition of the table in the change column statement (not sure why, but that's what the documentation says.)

So this should work:

mysql_query("ALTER TABLE tbl_help " . "CHANGE COLUMN help content VARCHAR(200) ;");
link|flag
vote up 2 vote down

From mySql Doc pages:

You can rename a column using a CHANGE old_col_name new_col_name column_definition clause.

link|flag
thanks for the page. sorry, what is the column_definition? it's syntax like TEXT INT etc? – bob Oct 31 at 20:59
1  
Yes, it's the type, constraints, etc. See dev.mysql.com/doc/refman/… for the exact definition. – Lukáš Lalinský Oct 31 at 21:04
@bob check the doc? – Mike B Oct 31 at 21:05
1  
It's the column type, length, charset etc. – scriptha Oct 31 at 21:05
@Mike B - Yeah.. getting blur. Actually I could not understand without fully examples. – bob Oct 31 at 21:09
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.