91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

數據庫SQL語句的使用

發布時間:2021-08-27 18:54:41 來源:億速云 閱讀:131 作者:chen 欄目:數據庫

這篇文章主要講解了“數據庫SQL語句的使用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“數據庫SQL語句的使用”吧!

1、創建數據庫
create database if not exists cs2013;
2、創建數據庫表格
create table if not exists comp (
	id int not null primary key auto_increment ,
	pid varchar(30) not null unique ,
	cname varchar(30) not null ,
	ename varchar(30) not null ,
	grade varchar(30) not null , 
	sex int not null ,
	clothe varchar(15) not null
)default charset = utf8;

create table if not exists team (
	id int not null primary key auto_increment ,
	cname varchar(30) not null ,
	ename varchar(30) not null ,
	coach0 int not null , 
	coach2 int not null ,
	stu0 int not null ,
	stu1 int not null ,
	stu2 int not null ,
	isgirls int not null ,
	email varchar(30) not null ,
	phone varchar(15) not null ,
	foreign key (coach0) references comp(id) ,
	foreign key (coach2) references comp(id) ,
	foreign key (stu0) references comp(id) ,
	foreign key (stu1) references comp(id) ,
	foreign key (stu2) references comp(id)
)default charset = utf8;

create table if not exists college (
	id int not null primary key auto_increment,
	cname varchar(30) not null ,
	ename varchar(30) not null ,
	teamcnt int not null
)default charset = utf8;

create table if not exists rc (
	id int not null primary key auto_increment ,
	college int not null ,
	team int not null ,
	date date not null ,
	foreign key (college) references college (id) ,
	foreign key (team) references team (id)
)default charset = utf8;

create table if not exists room (
	id int not null primary key auto_increment,
	name varchar(30) not null ,
	totcnt int not null ,
	regcnt int not null ,
	price double not null
)default charset = utf8;

create table if not exists hotel (
	id int not null primary key auto_increment,
	name varchar(30) not null ,
	room0 int not null ,
	room1 int not null ,
	room2 int not null ,
	foreign key (room0) references room (id) ,
	foreign key (room1) references room (id) ,
	foreign key (room2) references room (id)
)default charset = utf8;

create table if not exists rh (
	id int not null primary key auto_increment,
	college int not null ,
	hotel int not null ,
	date date not null ,
	foreign key (college) references college (id) ,
	foreign key (hotel) references hotel (id)
)default charset = utf8;

感謝各位的閱讀,以上就是“數據庫SQL語句的使用”的內容了,經過本文的學習后,相信大家對數據庫SQL語句的使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚顺市| 东明县| 竹山县| 平凉市| 平罗县| 长宁区| 陵水| 乳山市| 马关县| 靖江市| 云南省| 巴林右旗| 衢州市| 潢川县| 武夷山市| 大足县| 札达县| 新龙县| 民乐县| 锦屏县| 兴安县| 金华市| 盐城市| 达尔| 绵阳市| 峡江县| 黔南| 枣庄市| 屏东县| 南华县| 嘉定区| 榕江县| 奈曼旗| 蓝山县| 同仁县| 沭阳县| 平远县| 临沧市| 屏边| 东海县| 曲阜市|