sql语句怎么添加注释
时间: 2023-11-01 15:07:48 浏览: 298
在SQL语句中添加注释可以通过以下方式实现:
1. 创建表时添加注释:
```
create table test1 (
field_name int comment '字段的注释'
) comment='表的注释';
```
2. 修改字段时添加注释:
```
alter table test change column id id int not null default 0 comment '测试表id';
```
3. 查看表注释:
- 在生成的SQL语句中查看:
```
show create table test1;
```
- 在元数据的表中查看:
```
use information_schema;
select * from TABLES where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
```
4. 查看字段注释:
- 使用`show`命令查看:
```
show full columns from test1;
```
- 在元数据的表中查看:
```
use information_schema;
select * from COLUMNS where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
```
以上是在SQL语句中添加和查看注释的方法。\[1\]
#### 引用[.reference_title]
- *1* [sql 添加注释的方法](https://blog.csdn.net/job_csdn/article/details/123678311)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文