在SQL中,可以使用`COMMENT`关键字来添加表注释。例如:
```sql
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
...
) COMMENT 'This is a table comment';
```
也可以使用`ALTER TABLE`语句来添加表注释:
ALTER TABLE table_name COMMENT 'This is a table comment';