中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

數據庫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

锦屏县| 邯郸县| 河津市| 砀山县| 毕节市| 清涧县| 买车| 乐都县| 辽宁省| 察哈| 黔西县| 浦江县| 河南省| 扎兰屯市| 勃利县| 高平市| 疏附县| 茌平县| 同仁县| 赤城县| 建阳市| 湘乡市| 纳雍县| 岳普湖县| 扎赉特旗| 泌阳县| 常德市| 宕昌县| 新营市| 杨浦区| 金乡县| 德令哈市| 荃湾区| 正安县| 晋宁县| 巴东县| 阳东县| 江都市| 天气| 陆良县| 高邑县|