Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Thiết kế database Quản lí khách sạn

22:23 23-04-2018 2.744 lượt xem 7 bình luận 07:41 02-05-2018

Chào các anh/chị/các bạn, đây là database Quản lí khách sạn của em, do lần đầu thiết kế nên database còn nhiều thiếu sót, nên mong mọi người góp ý giúp để em hoàn thiện hơn. Cảm ơn mọi người nhiều ạ!

create table StaffType
(
ID int primary key identity,
Name nvarchar(100)not null default N'No Name'
)
go
create table Staff
(
UserName nvarchar(100) primary key,
DisplayName nvarchar(100) not null default N'No Name',
PassWord nvarchar(100) not null,
IDStaffType int foreign key references StaffType(ID) not null,
DateOfBirth Date not null,
Sex nvarchar(100) not null,
Address nvarchar(200) not null,
PhoneNumber int not null,
StartDay Date not null
)
go
create table CustomerType
(
ID int primary key identity,
Name nvarchar(100)not null default N'No Name'
)
go
create table Customer
(
IDCard int primary key,
IDCustomerType int foreign key references CustomerType(ID) not null,
Name nvarchar(100) not null default N'No Name',
DateOfBirth Date not null,
Address nvarchar(200) not null,
PhoneNumber int not null,
Sex nvarchar(100) not null,
Nationality nvarchar(100) not null
)
go
create table StatusRoom
(
ID int primary key identity,
Name nvarchar(100) not null default N'No Name'
)
go
create table RoomType
(
ID int primary key identity,
Name nvarchar(100) not null default N'No Name',
Price int not null,
LimitPerson int not null
)
go
create table Room
(
ID int primary key identity,
Name nvarchar(100) not null default N'No Name',
IDRoomType int foreign key references RoomType(ID) not null,
IDStatusRoom int foreign key references StatusRoom(ID) not null
)
go
create table BookRoom
(
ID int primary key identity,
IDCustomer int foreign key references Customer(IDCard) not null,
IDRoomType int foreign key references RoomType(ID) not null,
DateCheckIn date not null,
DateCheckOut date not null
)
create table ReceiveRoom
(
ID int foreign key references BookRoom(ID) not null,
IDRoom int foreign key references Room(ID) not null,
Amount int not null
primary key (ID)
)
go
create table ReceiveRoomDetails
(
IDReceiveRoom int foreign key references ReceiveRoom(ID) not null,
IDCustomerOther int foreign key references Customer(IDCard) not null,
primary key (IDReceiveRoom,IDCustomerOther)
)
go
create table ServiceType
(
ID int primary key identity,
Name nvarchar(100) not null default N'No Name'
)
go
create table Service
(
ID int primary key identity,
Name nvarchar(200) not null default N'No Name',
IDServiceType int foreign key references ServiceType(ID) not null,
Price int not null
)
go
create table Bill
(
ID int foreign key references ReceiveRoom(ID) not null,
StaffSetUp nvarchar(100) foreign key references Staff(UserName) not null,
DateOfCreate smalldatetime default getdate(),
TotalPrice int not null,
Discount int not null default 0,
Status nvarchar(100)  not null default N'Unpaid'
primary key(ID)
)
go
create table BillInfo
(
IDService int foreign key references Service(ID) not null,
IDBill int foreign key references Bill(ID) not null,
Count int not null
constraint PK_BillInfo primary key(IDService,IDBill)
)
go
create table Surcharge
(
Name nvarchar(200) not null default N'No Name',
Value float not null,
Describe nvarchar(200)
)

 

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
appdeveloper102 đã bình luận 07:41 02-05-2018

bạn ko có đặc tả yêu cầu thì nhìn vào cái này biết dc gì????

Vũ Minh Luân đã bình luận 21:51 24-04-2018

Cái này bạn tạo diagram rồi chụp hình up lên cho mọi người xem dễ hơn :D

K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 13:38 24-04-2018

ứ muốn nhìn @@. cứ vào client chạy ok là ok. mấy cái phần lớn hơn thì khi hệ thống lớn sẽ rõ. giờ luyện tập thì cứ chạy ok là được. phần sql nào có nguyên 1 job cho nó và toàn đầu to làm không đó

Nguyễn Thái Hải đã bình luận 09:13 24-04-2018

Đúng đặc tả là được rồi bạn. Còn hơn tí thì nhờ những người chuyên database mới biết được :D

Câu hỏi mới nhất