365文库
登录
注册
1

sql面试题

235阅读 | 8收藏 | 3页 | 打印 | 举报 | 认领 | 下载提示 | 分享:
1
sql面试题第1页
sql面试题第2页
sql面试题第3页
福利来袭,限时免费在线编辑
转Pdf
right
1/3
right
下载我编辑的
下载原始文档
收藏 收藏
搜索
下载二维码
App功能展示
海量免费资源 海量免费资源
文档在线修改 文档在线修改
图片转文字 图片转文字
限时免广告 限时免广告
多端同步存储 多端同步存储
格式轻松转换 格式轻松转换
用户头像
丑孩 上传于:2024-05-22
1.一个表中的Id有多个记录,把所有这个id的记录查出来,并显示共有多少条记录数。 ------------------------------------------------------------------------------- select id,count(*) from tab8 group by id having count(*)>1 select * from (select tab8,count(id) as num from tab8 group by id) t where t.num>1 2.用一条SQL语句 查询出每门课都大于80分的学生姓名 name kecheng fenshu 张三 语文 81 张三 数学 75 李四 语文 76 李四 数学 90 王五 语文 81 王五 数学 100 王五 英语 90 a): select distinct name from tab9 where name not in (select distinct name from tab9 where fengshu<=80) b): select * from tab9 t7 where t7.name not in (select t5.name from (select * from (select t1.kecheng from tab9 t1 group by t1.kecheng),(select t2.name from tab9 t2 group by t2.name)) t4,(select * from tab9) t5 where t4.name = t5.name and t4.kecheng = t5.kecheng and t5.fengshu < 80) 3.有一张表,里面有3个字段:语文,数学,英语。其中有3条记录分别表示语文70分,数学80分,英语58分,请用一条sql语句查询出这三条记录并按以下条件显示出来(并写出您的思路): 大于或等于80表示优秀,大于或等于60表示及格,小于60分表示不及格。 显示格式: 语文 数学 英语 及格 优秀 不及格 ------------------------------------------------------------------------------------------- select (case when语文>=80 then '优秀' when语文>60 then '及格' else '不及格' end) as 语文, (case when 数学>=80 then '优秀' when数学>60 then '及格' else '不及格' end) as数学, (case when英语>=80 then '优秀' when英语>60 then '及格' else '不及格' end) as 英语 from tab5 4. Student(S#,Sname,Sage,Ssex) 学生表 Course(C#,Cname,T#) 课程表 SC(S#,C#,score) 成绩表 Teacher(T#,Tname) 教师表 4.1查询平均成绩大于60分的同学的学号和平均成绩; select S#,avg(score) from sc group by S# having avg(score) >60; 4.2查询学过“001”并且也学过编号“002”课程的同学的学号、姓名 select Student.S#,Student.Sname from Student,SC where Student.S#=SC.S# and SC.C#=’001′and exists( Select * from SC as SC_2 where SC_2.S#=SC.S# and SC_2.C#=’002′); 5.问题描述: 为管理岗位业务培训信息,建立3个表: S (S#,SN,SD,SA) S#,SN,SD,SA 分别代表学号、学员姓名、所属单位、学员年龄 C (C#,CN ) C#,CN 分别代表课程编号、课程名称 SC ( S#,C#,G ) S#,C#,G 分别代表学号、所选修的课程编号、学习成绩 要求实现如下5个处理: 1. 使用标准SQL嵌套语句查询选修课
tj