doctor.sql

来自「十分好的一个医院管理系统」· SQL 代码 · 共 12 行

SQL
12
字号
create table doctor
(hoscode char(4) not null,
code char(4) not null,			//编号
name char(10) not null,			//姓名
sex tinyint not null,			//性别:1-男,0-女
belong char(20) not null,		//科室名称
pycode char(5) null,
wbcode char(5) null,
effectflag tinyint not null,
updateflag tinyint not null,
constraint p_doctor primary key nonclustered (hoscode,code) on 'default');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?