Computer >> Máy Tính >  >> Lập trình >> MySQL

Làm thế nào chúng ta có thể đặt các nhận xét trong một cột của bảng MySQL hiện có?

Nó có thể được thực hiện bằng cách sử dụng từ khóa ‘COMMENT’ trong khi sửa đổi cột bằng lệnh ALTER TABLE. Ví dụ:nếu chúng tôi muốn thêm nhận xét vào cột ‘id’ của bảng ‘thử nghiệm’ thì truy vấn sau sẽ thực hiện điều đó

mysql> ALTER TABLE testing MODIFY id INT COMMENT 'id of employees';
Query OK, 0 rows affected (0.07 sec)
Records: 0 Duplicates: 0 Warnings: 0

Với truy vấn sau, nó có thể được kiểm tra trong trường nhận xét của một cột.

mysql> Show full columns from testing\G
*************************** 1. row ***************************
     Field: id
      Type: int(11)
 Collation: NULL
      Null: NO
       Key: PRI
   Default: 0
     Extra:
Privileges: select,insert,update,references
   Comment: id of employees
*************************** 2. row ***************************
     Field: Name
      Type: varchar(20)
 Collation: latin1_swedish_ci
      Null: YES
       Key:
   Default: NULL
     Extra:
Privileges: select,insert,update,references
   Comment:
2 rows in set (0.05 sec)