Modifica del commento della tabella mysql


35

So che il commento della tabella mysql può essere definito alla creazione con:

create table (...)comment='table_comment';

E puoi visualizzare i commenti per:

show table status where name='table_name';

Come si cambia (modifica?) Il commento della tabella dopo che è stato creato. Intendo senza lasciare cadere e ricreare di nuovo il tavolo.

Risposte:


38
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)

Controlla i commenti nella struttura della tabella

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)

Puoi anche controllare i commenti da information_schema come di seguito

SELECT TABLE_COMMENT FROM information_schema.TABLES WHERE TABLE_NAME = 'test_comments';
+---------------+
| TABLE_COMMENT |
+---------------+
| Hello World   |
+---------------+
1 row in set (0.00 sec)

Modifica la tabella per modificare i commenti

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

Controlla i commenti modificati

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)

1
grazie per la spiegazione dettagliata, modificare la tabella per modificare i commenti era esattamente quello che stavo cercando
v14t

Domanda bonus: sarebbe sicuro modificare direttamente column_commentda information_schema.columns (poiché è alter table ...necessario specificare nuovamente tutta la definizione di colonna)?
Anello Ø
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.