mysql练习题

Posted foremostxl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql练习题相关的知识,希望对你有一定的参考价值。

学生表:student(学号,学生姓名,出生年月,性别)

技术图片
create table student(
    id int,
    name char(6),
    born_year year,
    birth_date date,
    class_time time,
    reg_time datetime
);

insert into student values
(1,egon,now(),now(),now(),now());

insert into student values
(2,alex,"1997","1997-12-12","12:12:12","2017-12-12 12:12:12");
日期类型

 

create table student(学号 int primary key not null,学生姓名 char,出生年月 date,性别 enum(‘男’,))

 

成绩表:score(学号,课程号,成绩)

create table score(学号 int,课程号 int,成绩 float)

 

课程表:course(课程号,课程名称,教师号)

教师表:teacher(教师号,教师姓名)

 

以上是关于mysql练习题的主要内容,如果未能解决你的问题,请参考以下文章

MySQL 练习<1>

MySQL 练习<3>

MySQL 练习<3>

python/MySQL练习题

MySQL 练习<4>

MySQL 练习<4>