⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sql oralce.txt

📁 图书管理系统!!C#+olc 大小是100多k
💻 TXT
字号:
create table system.Book(
Bid varchar(40) primary key,
Bname varchar(50),
Bprice int,
Bnum int,
Bpublish varchar(50),
Bdate varchar(50)
);

create table system.GetBInfo(
Rid varchar(40) not null,
Bid varchar(40) not null,
Getdate varchar(50) not null,
Setdate varchar(50) not null,
constraint c_form foreign key(Rid) references system.Reader(Rid),
constraint c_form1 foreign key(Bid) references system.Book(Bid)
);

 create table system.ReaderType(
 Typeid varchar(40) primary key,
 Typename varchar(50),
 Getmaxnum int not null,
 Getmaxday int not null
 );

create table system.YhInfo(
yhbh varchar(40) primary key,
userN varchar(50),
password varchar(40)
);

create table system.Reader(
Rid varchar(40) primary key,
Rname varchar(50),
Rtypeno varchar(40),
Rgetnum int not null,
constraint c_vv foreign key(Rtypeno) references system.ReaderType(Typeid)
);

⌨️ 快捷键说明

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