由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问个sql题
相关主题
问个SQL querySQL combine two columns from two different tables no shared columns
问个sql问题大熊求职记
问个mutex的面试题Google software engineer和research scientist区别
问个hash table的问题请问一下最大增长子序列的O(nLogk)算法
问个系统设计题USCIS 查状态的网站是不是出问题了?
问个sql小提。大牛勿进C++ Q29: extern and const together
如何设计cache拿到Google onsite了。发电面攒rp
3rd Amazon phone interview (1hr)现在data mining, pattern recognition好找工作吗?
相关话题的讨论汇总
话题: table话题: date话题: custid话题: retrieve话题: given
进入JobHunting版参与讨论
1 (共1页)
P*******b
发帖数: 1001
1
Given a table:
TABLE
Cust ID, Order ID, Date
Retrieve the customer who has ordered on two days ie., say 1st and 10th.
Also, is your query the most optimal one.
l*****a
发帖数: 559
2
SELECT `CustID` FROM `TABLE` group by `CustID` having count('Date')=2
在mysql里跑过。
A*H
发帖数: 127
3
你这个结果包括date在同一天的

【在 l*****a 的大作中提到】
: SELECT `CustID` FROM `TABLE` group by `CustID` having count('Date')=2
: 在mysql里跑过。

A*H
发帖数: 127
4
如果是mysql 5, 可以用having count(distinct(date))=2
1 (共1页)
进入JobHunting版参与讨论
相关主题
现在data mining, pattern recognition好找工作吗?问个系统设计题
cs的phd那些业最好找industry的工作?问个sql小提。大牛勿进
有A[i]如何设计cache
Hashtable 问题3rd Amazon phone interview (1hr)
问个SQL querySQL combine two columns from two different tables no shared columns
问个sql问题大熊求职记
问个mutex的面试题Google software engineer和research scientist区别
问个hash table的问题请问一下最大增长子序列的O(nLogk)算法
相关话题的讨论汇总
话题: table话题: date话题: custid话题: retrieve话题: given