前几天在博客园上看到一道SQL面试题,sc是表名。老师拿来与同学分享,让大家试做,要求是:查出每科成绩都>=80分的名字,看能写出几种方法。没有主外键,没有关联,脑袋一下子就蒙了。经老师讲解指导的两种方式:第一种:select
name from sc group by name having MI...
分类:
数据库 时间:
2014-05-09 17:48:25
阅读次数:
314
How to Find Happiness Without Buying
It如何不花钱就能找到乐子Our materialistic society has led us to believe that happiness
cannot be obtained without having mon...
分类:
其他好文 时间:
2014-05-09 11:57:25
阅读次数:
363
方程式Time Limit:1000MSMemory
Limit:65535KBSubmissions:2312Accepted:580DescriptionConsider equations having
the following form: a*x1*x1 + b*x2*x2 + c*x3*...
分类:
其他好文 时间:
2014-05-05 21:36:51
阅读次数:
222
WHERE 在分组和聚集计算之前选取输入行(因此,它控制哪些行进入聚集计算), 而
HAVING 在分组和聚集之后选取分组的行。 因此,WHERE 子句不能包含聚集函数; 因为试图用聚集函数判断那些行输入给聚集运算是没有意义的。
相反,HAVING 子句总是包含聚集函数。 (严格说来,你可以写不使用...
分类:
数据库 时间:
2014-05-05 11:16:58
阅读次数:
411
deletefromtesttableawhere(a.testcontent)in(selecttestcontentfromtesttableGROUPBYtestcontenthavingcount(*)>1)andseqidnotin(selectmin(seqid)fromtesttablegroupbytestcontenthavingcount(*)>1)
分类:
数据库 时间:
2014-05-04 17:36:38
阅读次数:
314
Excuses, Excuses!
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 3615
Accepted: 1254
Description
Judge Ito is having a problem with people subpoenaed fo...
分类:
其他好文 时间:
2014-05-03 17:10:03
阅读次数:
278
Excuses, Excuses!
Judge Ito is having a problem with people subpoenaed for jury duty giving rather lame excuses in order to avoid serving. In order to reduce the amount of time requi...
分类:
其他好文 时间:
2014-05-02 23:54:43
阅读次数:
474
--查找姓名、性别、年龄、地址、电话相同的员工记录。select count(id) as
id_count, name, sex, birthday, address, telfrom staffgroup by name, ...
分类:
其他好文 时间:
2014-05-01 13:57:05
阅读次数:
314
Problem 2167 大王叫我来巡山呐
比赛的第二题 呵呵
Problem 2168 防守阵地 I
比赛时看懂第一题 大了下草稿 马上切了它
假设当前x=(ai)*1+(ai+1)*2+(ai+2)*3+''''+(aj)*m
下一次是(ai+1)*1+(ai+2)*2+(ai+3)*3+''''+(aj+1)*m = (ai)*1+(ai+1)*2+(ai+2)*3+''''+(a...
分类:
其他好文 时间:
2014-04-27 21:46:59
阅读次数:
224
前几天去了两个比较牛的互联网公司面试,在sql这块都遇到问题了,哎,可惜呀,先把简单的梳理一下
成绩表 score
1、group by 使用
按某一个维度进行分组
例如:
求每个同学的总分
SELECT student,SUM(score) FROM score GROUP BY student
求每个同学的平均分
SELECT student,AVG(score) FR...
分类:
数据库 时间:
2014-04-27 21:17:59
阅读次数:
614