一、建立数据库
create database mydb11_stu;
use mydb11_stu;
二、建表
1、student表
mysql> create table student(id int(10) not NULL unique primary key, name varchar(20) not NULL, sex varchar(4),birth year, department varchar(20), address varchar(50));
mysql> insert student values(901,'张三丰','男',2002,'计算机系','北京市海淀区');
mysql> insert student values(902,'周全有','男',2000,'中文系','北京市昌平区');
mysql> insert student values(903,'张思维','女',2003,'中文系','湖南省永州市');
mysql> insert student values(904,'李广昌','男',1999,'英语系','辽宁省皋新市');
mysql> insert student values(905,'王翰','男',2004,'英语系','福建省厦门市');
mysql> insert student values(906,'王心凌','女',1998,'计算机系','湖南省衡阳市');
2、score表
mysql> create table score(id int(10) not null unique primary key auto_increment, stu_id int(10) not null, c_name varchar(20),grade int(10));
mysql> insert into score values(null,901,'计算机',98);
mysql> insert into score values(null,901,'英语',80);
mysql> insert into score values(null,902,'计算机',65);
mysql> insert into score values(null,902,'中文',88);
mysql> insert into score values(null,903,'中文',95);
mysql> insert into score values(null,904,'计算机',70);
mysql> insert into score values(null,904,'英语',92);
mysql> insert into score values(null,905,'英语',94);
mysql> insert into score values(null,906,'计算机',49);
mysql> insert into score values(null,906,'英语',83);