数据库SQL题目

1.用sql语句,写出取出数据库系统时间,格式为2012-01-022.用一条sql语句,查询出每门课都大于80分的学生姓名,以及每科的平均成绩?namekechengs... 1.用sql语句,写出取出数据库系统时间,格式为2012-01-02
2.用一条sql语句,查询出每门课都大于80分的学生姓名,以及每科的平均成绩?
name kecheng score

张三 语文 71

张三 数学 85

李四 语文 76

李四 数学 90

王五 语文 80

王五 数学 97

王五 英语 88

3.写一段sql语句
year month amount
1991 1 1.1
1991 2 1.2
1991 3 1.3
1992 1 2.1
1992 2 2.2
1992 3 2.3
查成下面这样的结果
year m1 m2 m3
1991 1.1 1.2 1.3
1992 2.1 2.2 2.3
求助
展开
 我来答
匿名用户
2013-04-16
展开全部
第二题是说查询每科都大于80分的这个人的平均成绩还是说所有科目所有人的平均成绩?如果是后者用一个Sql语句得到结果不行吧?有高人解答吗?如果是前者,还有可能。
借用楼上的两句:
1. select convert(varchar(10),getdate(),120)
2. select name,avg(score) from table_score a
where not exists ( select 1 from table_score b where a.name = b.name and b.score <= 80 )
group by name
3.select year,sum(m1) as m1,sum(m2) as m2,sum(m3) as m3 from (
select year,case month when 1 then amount else 0 end as m1,case month when 2 then amount else 0 end as m2,case month when 3 then amount else 0 end as m3 from tabe) group by year
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-04-16
展开全部
1、select convert(varchar(50),getdate(),23)
2、select t0.name from table_name t0 where (select t1.score from table_name t1 where t1.kecheng='语文')>=80 and (select t2.score from table_name t2 where t2.kecheng='数学')>=80 and (select t3.score from table_name t3 where t3.kecheng='英语')>=80
平均分:
select t0.kecheng,sum(t0.score)/(select count(t1.score) from table_name t1 where t1.kecheng=t0.kecheng) as avg from table_name t0 group by t0.kecheng
3、select t0.year,(select sum(t1.amount) from table_name t1 where t1.month=1 and t1.year=t0.year) as m1,(select sum(t2.amount) from table_name t2 where t2.month=2 and t2.year=t0.year) as m2,(select sum(t3.amount) from table_name t3 where t3.month=3 and t1.year=t0.year) as m3 from table_name t0 group by t0.year
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
射手幽灵伊
2013-04-16 · TA获得超过2716个赞
知道大有可为答主
回答量:4955
采纳率:81%
帮助的人:1981万
展开全部
1. select convert(varchar(10),getdate(),120)
2. select name,avg(score) from table_score a
where not exists ( select 1 from table_score b where a.name = b.name and b.score <= 80 )
group by name
3. 使用 pivot
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wingao2
2013-04-16
知道答主
回答量:33
采纳率:0%
帮助的人:6万
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式