摘要: 2、查询“生物”课程比“物理”课程成绩高的所有学生的学号;select A.student_id from (select score.sid,score.student_id,course.cname,score.number from score left join course on scor 阅读全文
posted @ 2020-02-23 21:52 Murraya 阅读(160) 评论(0) 推荐(0)
摘要: 创建数据库 create database; 创建表 create table t1(id int not null auto_increment primary key, name varchar(20) not null, age varchar(20) not null, unique nam 阅读全文
posted @ 2020-02-23 21:50 Murraya 阅读(103) 评论(0) 推荐(0)