数据库创建一张表,表名学号 字段 name 类型 20个字符 字段 age 类型 数值型 字段
2个回答
展开全部
要养成良好的代码习惯
-- Create table
create table 学号
(
name varchar2(20) not null,
age number
)
;
-- Add comments to the columns
comment on column 学号.name
is '姓名';
comment on column 学号.age
is '年龄';
-- Create/Recreate primary, unique and foreign key constraints
alter table 学号
add constraint pk_name primary key (NAME);
-- Create table
create table 学号
(
name varchar2(20) not null,
age number
)
;
-- Add comments to the columns
comment on column 学号.name
is '姓名';
comment on column 学号.age
is '年龄';
-- Create/Recreate primary, unique and foreign key constraints
alter table 学号
add constraint pk_name primary key (NAME);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |