Mysql support very short comments i.e. only 60 character.
I use comments to document the table so that I can recall its use when I look back after a few years. but with char length of 60 its not possible to document everything.
is there any way to add long comments to tables in mysql?
If the standard method isn’t good enough, don’t use it. Create your own meta-tables along the lines of:
(adding schemas and indexes as appropriate).
Then populate that table rather than using the standard method. There’s little functional difference between
show create table mytableandselect description from mymetadata where tablename = 'mytable'.By the way, the MySQL 5.6 doco states that the limit is 1024 characters. It’s been so since 5.5.3. Before that (all the way back to 5.0), it claims that 255 characters were okay. So I’m not sure where your claim of sixty characters came from, unless you’re using a very old MySQL.