MySQL tablo yorumunu değiştirme


35

MySQL tablo yorumu oluşturma sırasında tanımlanabileceğini biliyorum :

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

Ve yorumları şu şekilde görüntüleyebilirsiniz:

show table status where name='table_name';

Tablo yorumunu, oluşturulduktan sonra nasıl değiştirirsiniz? Demek istediğim, masayı bırakıp yeniden yaratmak.

Yanıtlar:


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)

Tablo yapısındaki yorumlarınızı kontrol edin

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)

Aşağıdaki gibi information_schema'daki yorumları da kontrol edebilirsiniz.

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

Yorumları değiştirmek için tabloyu değiştir

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

Değiştirilen yorumları kontrol et

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
detaylı açıklama için teşekkür ederim, tabloyu değiştirmek için yorumları değiştirmek tam olarak aradığım
şeydi

Bonus sorusu: doğrudan değişiklik yapmak güvenli olur mu column_comment dan information_schema.columns (çünkü alter table ...yine tüm sütun tanımını belirtmek gerekir)?
Yüzük,
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.