plsql 在oracle中创建表时添加注释使用comment字段。例如有以下表:
CREATE TABLE t1(
id varchar2(32) primary key,
name VARCHAR2(32) ,
age VARCHAR2(32)
)
添加表注释的命令为:
COMMENT ON table t1 IS '个人信息'
添加字段注释命令为:
comment on column t1.id is 'id'
comment on column t1.name is '姓名'
comment on column t1.age is '年龄'
扩展资料
plsql中查看表注释和字段注释方法介绍
查看当前用户下所有表注释:select * from user_tab_comments
结果: user_tab_comments:table_name,table_type,comments
查看当前用户下某表所有字段注释:select * from user_col_comments where TABLE_NAME='某表名称';
结果:user_col_comments:table_name,column_name,comments
创建表的时候添加 表注释
常用的注释语句
查看注释:
select * from sys.extended_properties where major_id=OBJECT_ID('WFY')
下面的文章是很写的很深, 有时间好好看看
建表sql语句如下:
--创建学员信息数据表use 所用数据库名
go
if exists (select * from sysobjects where name='Students')
drop table Students
go
create table Students
(
StudentId int identity(100000,1) , --主键
StudentName varchar(20) not null,
Gender char(2) not null,
Birthday smalldatetime not null,
StudentIdNo numeric(18,0) not null,--身份z号
StudentAddress varchar(500)
)
go
--创建数据表的各种约束
use 所用数据库名
go
--创建“主键”约束primary key
if exists(select * from sysobjects where name='pk_StudentId')
alter table Students drop constraint pk_StudentId
alter table Students add constraint pk_StudentId primary key (StudentId)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)