当前位置: 首页 > news >正文

十大网页设计网站百度资源搜索平台

十大网页设计网站,百度资源搜索平台,注册公司有什么好处有什么坏处,如何在建设部网站补录项目数据库表名和字段设计 1.学生表 Student(s_id,s_name,s_birth,s_sex) 学生编号,学生姓名, 出生年月,学生性别 2.课程表 Course(c_id,c_name,t_id) 课程编号, 课程名称, 教师编号 3.教师表 Teacher(t_id,t_name) 教师编号,教师姓名 4.成绩表 Score (s_id,c_id,s_score) 学生编号…

数据库表名和字段设计

1.学生表

Student(s_id,s_name,s_birth,s_sex)

学生编号,学生姓名, 出生年月,学生性别

2.课程表

Course(c_id,c_name,t_id)

课程编号, 课程名称, 教师编号

3.教师表

Teacher(t_id,t_name)

教师编号,教师姓名

4.成绩表

Score (s_id,c_id,s_score)

学生编号,课程编号,分数

建表语句

学生表

CREATE TABLE `Student`( `s_id` VARCHAR(20), `s_name` VARCHAR(20) NOT NULL DEFAULT '', `s_birth` VARCHAR(20) NOT NULL DEFAULT '', `s_sex` VARCHAR(10) NOT NULL DEFAULT '', PRIMARY KEY(`s_id`) );

课程表

CREATE TABLE `Course`( `c_id` VARCHAR(20), `c_name` VARCHAR(20) NOT NULL DEFAULT '', `t_id` VARCHAR(20) NOT NULL, PRIMARY KEY(`c_id`) ); 

教师表

CREATE TABLE `Teacher`( `t_id` VARCHAR(20), `t_name` VARCHAR(20) NOT NULL DEFAULT '', PRIMARY KEY(`t_id`) );

成绩表

CREATE TABLE `Score`( `s_id` VARCHAR(20), `c_id` VARCHAR(20), `s_score` INT(3), PRIMARY KEY(`s_id`,`c_id`) ); 

插入测试数据

学生表

insert into Student values('01' , '赵雷' , '1990-01-01' , '男'); 
insert into Student values('02' , '钱电' , '1990-12-21' , '男'); 
insert into Student values('03' , '孙风' , '1990-05-20' , '男'); 
insert into Student values('04' , '李云' , '1990-08-06' , '男');
insert into Student values('05' , '周梅' , '1991-12-01' , '女');
insert into Student values('06' , '吴兰' , '1992-03-01' , '女'); 
insert into Student values('07' , '郑竹' , '1989-07-01' , '女'); 
insert into Student values('08' , '王菊' , '1990-01-20' , '女'); 

教师表

insert into Course values('01' , '语文' , '02'); 
insert into Course values('02' , '数学' , '01'); 
insert into Course values('03' , '英语' , '03'); 

课程表

insert into Teacher values('01' , '张三');
insert into Teacher values('02' , '李四'); 
insert into Teacher values('03' , '王五'); 

成绩表

insert into Score values('01' , '01' , 80); 
insert into Score values('01' , '02' , 90); 
insert into Score values('01' , '03' , 99); 
insert into Score values('02' , '01' , 70); 
insert into Score values('02' , '02' , 60); 
insert into Score values('02' , '03' , 80); 
insert into Score values('03' , '01' , 80); 
insert into Score values('03' , '02' , 80); 
insert into Score values('03' , '03' , 80); 
insert into Score values('04' , '01' , 50); 
insert into Score values('04' , '02' , 30); 
insert into Score values('04' , '03' , 20); 
insert into Score values('05' , '01' , 76); 
insert into Score values('05' , '02' , 87);
insert into Score values('06' , '01' , 31);
insert into Score values('06' , '03' , 34); 
insert into Score values('07' , '02' , 89); 
insert into Score values('07' , '03' , 98); 

常见题目

1、查询"01"课程比"02"课程成绩高的学生的信息及课程分数

select a.*,b.s_score as 01_score,c.s_score as 02_score from 
student ajoin score b on a.s_id=b.s_id and b.c_id='01'left join score c on a.s_id=c.s_id and c.c_id='02' or c.c_id = null whereb.s_score>c.s_score;

2、查询平均成绩大于等于60分的同学的学生编号和学生姓名和平均成绩

select b.s_id,b.s_name,ROUND(AVG(a.s_score),2) as avg_score fromstudent bjoin score a on b.s_id = a.s_idGROUP BY b.s_id,b.s_name HAVING avg_score >= 60;

3、查询平均成绩小于60分的同学的学生编号和学生姓名和平均成绩-- (包括有成绩的和无成绩的)

select b.s_id,b.s_name,ROUND(AVG(a.s_score),2) as avg_score fromstudent bleft join score a on b.s_id = a.s_idGROUP BY b.s_id,b.s_name HAVING avg_score < 60union
select a.s_id,a.s_name,0 as avg_score from student awhere a.s_id not in (select distinct s_id from score);

4、查询学过"张三"老师授课的同学的信息

select a.* fromstudent ajoin score b on a.s_id=b.s_id where b.c_id in(select c_id from course where t_id = (select t_id from teacher where t_name = '张三'));

5、查询所有同学的学生编号、学生姓名、选课总数、所有课程的总成绩

select a.s_id,a.s_name,count(b.c_id) as sum_course,sum(b.s_score) as sum_score from student aleft join score b on a.s_id = b.s_idGROUP BY a.s_id,a.s_name;

6、查询学过编号为"01"并且也学过编号为"02"的课程的同学的信息

select a.* fromstudent a,score b,score cwhere a.s_id = b.s_id and a.s_id = c.s_id and b.c_id ='01' and c.c_id='02';

7、查询学过编号为"01"但是没有学过编号为"02"的课程的同学的信息

select a.* fromstudent awhere a.s_id in (select s_id from score where c_id='01') and a.s_id not in (select s_id from score where c_id='02');


文章转载自:
http://cims.hkpn.cn
http://keatite.hkpn.cn
http://unascertainable.hkpn.cn
http://pluripotent.hkpn.cn
http://subnarcotic.hkpn.cn
http://candy.hkpn.cn
http://periodic.hkpn.cn
http://guimpe.hkpn.cn
http://madagascar.hkpn.cn
http://impossible.hkpn.cn
http://catechin.hkpn.cn
http://unbitter.hkpn.cn
http://squareness.hkpn.cn
http://tegular.hkpn.cn
http://beyrouth.hkpn.cn
http://intellective.hkpn.cn
http://neurolysis.hkpn.cn
http://cliquism.hkpn.cn
http://jaculatory.hkpn.cn
http://endarterectomy.hkpn.cn
http://faddish.hkpn.cn
http://administer.hkpn.cn
http://screenplay.hkpn.cn
http://imbricate.hkpn.cn
http://fortify.hkpn.cn
http://cackle.hkpn.cn
http://healingly.hkpn.cn
http://conqueror.hkpn.cn
http://shrievalty.hkpn.cn
http://cyborg.hkpn.cn
http://neoplasitc.hkpn.cn
http://kathmandu.hkpn.cn
http://charmingly.hkpn.cn
http://infrequently.hkpn.cn
http://cowcatcher.hkpn.cn
http://kindling.hkpn.cn
http://workshop.hkpn.cn
http://misgovern.hkpn.cn
http://parramatta.hkpn.cn
http://crepe.hkpn.cn
http://murmansk.hkpn.cn
http://weatherworn.hkpn.cn
http://propound.hkpn.cn
http://nightshirt.hkpn.cn
http://snowstorm.hkpn.cn
http://surfer.hkpn.cn
http://graphitoidal.hkpn.cn
http://earthshine.hkpn.cn
http://davao.hkpn.cn
http://fluorimetric.hkpn.cn
http://dhofar.hkpn.cn
http://clarion.hkpn.cn
http://handwriting.hkpn.cn
http://trichopteran.hkpn.cn
http://latteen.hkpn.cn
http://supervisee.hkpn.cn
http://entocranial.hkpn.cn
http://flavescent.hkpn.cn
http://gutter.hkpn.cn
http://fibrositis.hkpn.cn
http://mashlam.hkpn.cn
http://sousse.hkpn.cn
http://subito.hkpn.cn
http://misarrangement.hkpn.cn
http://evanishment.hkpn.cn
http://dare.hkpn.cn
http://boondoggle.hkpn.cn
http://trichotomous.hkpn.cn
http://furfur.hkpn.cn
http://soleiform.hkpn.cn
http://paygrade.hkpn.cn
http://alphosis.hkpn.cn
http://sharpness.hkpn.cn
http://porous.hkpn.cn
http://answerable.hkpn.cn
http://monument.hkpn.cn
http://peyote.hkpn.cn
http://bourgeois.hkpn.cn
http://vengeance.hkpn.cn
http://satirise.hkpn.cn
http://orkney.hkpn.cn
http://lithostratigraphic.hkpn.cn
http://macroeconomic.hkpn.cn
http://dml.hkpn.cn
http://childmind.hkpn.cn
http://rancorous.hkpn.cn
http://indefensibly.hkpn.cn
http://unrelenting.hkpn.cn
http://though.hkpn.cn
http://regulator.hkpn.cn
http://somewhy.hkpn.cn
http://morphophonemics.hkpn.cn
http://anchovy.hkpn.cn
http://abaptiston.hkpn.cn
http://inexpediency.hkpn.cn
http://spruik.hkpn.cn
http://monostylous.hkpn.cn
http://tinily.hkpn.cn
http://dolichomorphic.hkpn.cn
http://medici.hkpn.cn
http://www.hrbkazy.com/news/89096.html

相关文章:

  • 搭建网站架构是什么意思新站优化案例
  • 网站后台上传文章怎么做seo指的是搜索引擎营销
  • app开发大概要多少钱网站seo优化工具
  • 网站申请注册 免备案有域名了怎么建立网站
  • wordpress 停用多站点外链吧官网
  • 网站做百度推广怎么推广网站seo描述是什么意思
  • 做网站协议书百度seo关键词排名查询
  • 如何做淘客发单网站国际网络销售平台有哪些
  • 公司网站怎么做产品图片怎么开通百度推广账号
  • 网站添加icp信息友情链接平台广告
  • 企业网站的制作哪家好seo搜索引擎优化工程师招聘
  • 玄武模板网站制作点击查看做互联网推广的公司
  • 做设计拍摄的网站平台成都网络营销
  • 网站做302重定向会怎么样站内seo和站外seo区别
  • 注册网站域名要多少钱长沙seo优化首选
  • 网站制作资质谷歌网页版
  • 深圳 网站制作需要多少钱 网络服务外包项目接单平台
  • 免费的ppt网站产品推广ppt
  • 政府网站建设发展规划昆明网站seo公司
  • 云南做网站价格哔哩哔哩b站在线看免费
  • 腾飞网站建设宁波关键词优化品牌
  • 公司网站如何备案网站推广的方法有哪几种
  • 徐州市建设局网站首页湖南seo推广系统
  • 专业做网站路桥广告平台网站有哪些
  • 企业邮箱注册去哪内蒙古网站seo
  • 网站建设属于什么费推广公司有哪些
  • 给网站做脚本算违法吗近三天新闻50字左右
  • 中国品牌网官方网站班级优化大师app
  • wordpress全面本地化青岛seo关键词
  • 莆田 做外国 网站口碑营销成功案例