码迷,mamicode.com
首页 > 数据库 > 详细

Oracle创建表,并添加默认值和备注

时间:2018-03-12 17:00:09      阅读:595      评论:0      收藏:0      [点我收藏+]

标签:create   编码   varchar   default   har   dep   默认   ble   table   

create table testemp(
id varchar2(50) default sys_guid(),
deptno varchar2(20) ,--部门编码
ename varchar2(20),--人名
sal number(10)--工资 )

----表名描述
comment on table testemp is ‘测试专用表‘;
----字段备注
comment on column testemp.deptno is ‘部门编码‘;
comment on column testemp.ename is ‘人名‘;
comment on column testemp.sal is ‘工资‘;

Oracle创建表,并添加默认值和备注

标签:create   编码   varchar   default   har   dep   默认   ble   table   

原文地址:https://www.cnblogs.com/LeiYang5237/p/8549482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!