USE master
go
if exists(select * from sysdatabases where name='hospital')
drop database hospital
GO
create database hospital
on primary
(name='hospital_data',
filename='G:\project\hospital_data.mdf',
size=10mb,
maxsize=100mb,
filegrowth=10%)
log on
(name='hospital_log',
filename='G:\project\hospital_log.ldf',
size=5mb,
filegrowth=1MB)
Go
use hospital
go
if exists(select * from sysobjects where name='doctor')
drop table doctor
go
--医师表
create table doctor
(
doctorid int not null, --医师ID
name varchar(32) not null, --医师姓名
[description] varchar(32) not null, --医师简介
zhicheng varchar(32) not null, --医师职称
memo varchar(200) null --备注
)
go
USE hospital
go
if exists(select * from sysobjects where name='user')
drop table [user]
go
--用户表
create table [user]
(
userid int not null, --用户ID
name varchar(32)
创建SQLQuery医院挂号数据库、数据表
最新推荐文章于 2022-08-29 09:09:28 发布
本文档详细展示了如何使用SQL创建医院挂号系统的数据库,包括'hospital'数据库的创建,以及'doctor'(医师表)、'[user]'(用户表)、'administrator'(管理员表)、'[time]'(时刻表)和'department'(科室表)的数据表结构设计,并为各表添加了相应的约束,如主键、唯一性和外键约束。
摘要由CSDN通过智能技术生成