您好,登錄后才能下訂單哦!
這篇文章主要講解了“數據庫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語句的使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。