Je sais que mysql commentaire de table peut être défini à la création avec:
create table (...)comment='table_comment';
Et vous pouvez afficher les commentaires par:
show table status where name='table_name';
Comment modifier (modifier?) le commentaire de la table après sa création. Je veux dire sans laisser tomber et recréer la table à nouveau.
DROP TABLE IF EXISTS test_comments;
Query OK, 0 rows affected (0.08 sec)
CREATE TABLE test_comments (ID INT, name CHAR(30)) COMMENT 'Hello World';
Query OK, 0 rows affected (0.22 sec)
Vérifiez vos commentaires dans la structure du tablea
show create table test_comments\G
*************************** 1. row ***************************
Table: test_comments
Create Table: CREATE TABLE `test_comments` (
`ID` int(11) DEFAULT NULL,
`name` char(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Hello World'
1 row in set (0.00 sec)
Vous pouvez également vérifier les commentaires du schéma_information comme ci-dessous
SELECT TABLE_COMMENT FROM information_schema.TABLES WHERE TABLE_NAME = 'test_comments';
+---------------+
| TABLE_COMMENT |
+---------------+
| Hello World |
+---------------+
1 row in set (0.00 sec)
Modifier le tableau pour modifier les commentaires
ALTER TABLE test_comments COMMENT = 'This is just to test how to alter comments';
Query OK, 0 rows affected (0.08 sec)
Records: 0 Duplicates: 0 Warnings: 0
Vérifiez les commentaires modifiés
show create table test_comments\G
*************************** 1. row ***************************
Table: test_comments
Create Table: CREATE TABLE `test_comments` (
`ID` int(11) DEFAULT NULL,
`name` char(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='This is just to test how to alter comments'
1 row in set (0.00 sec)
SELECT TABLE_COMMENT FROM information_schema.TABLES WHERE TABLE_NAME = 'test_comments';
+--------------------------------------------+
| TABLE_COMMENT |
+--------------------------------------------+
| This is just to test how to alter comments |
+--------------------------------------------+
1 row in set (0.00 sec)