We have a MySQL table that was altered with
ALTER TABLE t COMMENT 'foo'
we later realize that we don't want that comment. Is there a way to delete it?
simply saying
ALTER TABLE t COMMENT 'NOT foo'
simply adds an additional comment, so that when you do a SHOW CREATE TABLE t it shows BOTH comments...
ETA:
AH, the problem seems to be that My PHP that is working with the comment can't tell the difference between a comment from an ADD COLUMN and a comment which is just about the whole table...
So, now what I need to do is delete replace the COLUMN comment...