在 SQL 中,可以使用 COMMENT
關鍵字為表添加注釋。例如,下面是一個示例 SQL 語句,用于創建一個名為 students
的表,并為該表添加注釋:
CREATE TABLE students (
id INT PRIMARY KEY,
name VARCHAR(50),
age INT
) COMMENT='This table stores information about students';
在上面的示例中,使用 COMMENT
關鍵字為表 students
添加了注釋,內容為“This table stores information about students”。通過這種方式,可以為表添加更多有關其用途或設計的說明。