清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | drop database Contact; create database Contact; use Contact; CREATE TABLE Employee ( id int unsigned not null auto_increment primary key , Name VARCHAR (50), Phone VARCHAR (15), departmentId int ); CREATE TABLE Department( id int unsigned not null auto_increment primary key , Name VARCHAR (50), Phone VARCHAR (15) ); |