oracle中创建表时添加注释

前端之家收集整理的这篇文章主要介绍了oracle中创建表时添加注释前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

CREATE TABLE t1(
id varchar2(32) primary key,
name VARCHAR2(32),
age VARCHAR2(32)
)

添加表注释:
COMMENTONtable t1 IS'个人信息';

添加字段注释:

comment on column t1.id is 'id';

comment on column t1.name is '姓名';
comment on column t1.age is '年龄';

分类:oracle

原文链接:https://www.f2er.com/oracle/208109.html

猜你在找的Oracle相关文章