avatar
请教高手,包子谢# Database - 数据库
g*3
1
蛋糕达人快点来帮忙,为什么我从超市买的whipping cream打出来总是不够硬阿,不像很
多mm做的看起来都很硬挺很光滑的样子 ,我只是抹蛋糕表面的时候就觉得很软塌塌的,
更别说拿来裱花了,肯定站不住.是因为什么原因呢 ? 打发时间和技巧应该注意什么啊?
真心求教
avatar
m*2
2
有2个table
table1:
tablID, CustomerID, inquery code,inquerydate
34, 12345, A, 1/1/2010
35, 12346, A, 1/3/2010
36, 12345, B, 1/5/2010
37, 12346, B, 1/8/2010
38, 12345, C, 1/20/2010
39, 12346, C, 1/24/2010
......
table2:
orderID, CustomerID, orderdate
2001, 12345, 1/15/2010
2002, 12346, 1/12/2010
我现在想做个report,如下结果:
customerID, inquery code,inquerydate
12345, B
12346, B
就是说,找出的inquery code在orderdate之前的最后一次。
包子谢!
avatar
s*1
3
速度不够快?时间不够长?还是买的whipping cream不对啊?light的好像就打不了干
性发泡...
avatar
e*e
4
SELECT CustomerID, Inquery_code FROM table1
WHERE Inquerydate IN (SELECT max(inquerydate) FROM table1,table2 WHERE
table1.CustomerID = table2.CustomerID AND table1.inquerydateorderdate GROUP BY table1.CustomerID)
包子 please,当然date那个可以自己改一下,懒得写了

【在 m**********2 的大作中提到】
: 有2个table
: table1:
: tablID, CustomerID, inquery code,inquerydate
: 34, 12345, A, 1/1/2010
: 35, 12346, A, 1/3/2010
: 36, 12345, B, 1/5/2010
: 37, 12346, B, 1/8/2010
: 38, 12345, C, 1/20/2010
: 39, 12346, C, 1/24/2010
: ......

avatar
g*3
5
好像也不是light的,但是的确不是heavy的,看来下次要买heavy的来试试了 ,我觉得我
是不是打得时间太长了有点,唉,老公安慰我说就跟做实验似的,不对了就倒掉重来好了,
:(

【在 s*******1 的大作中提到】
: 速度不够快?时间不够长?还是买的whipping cream不对啊?light的好像就打不了干
: 性发泡...

avatar
m*2
6
恩,谢谢二姐。包子已发。明天回公司试一下,不行再找你。。。。

【在 e***e 的大作中提到】
: SELECT CustomerID, Inquery_code FROM table1
: WHERE Inquerydate IN (SELECT max(inquerydate) FROM table1,table2 WHERE
: table1.CustomerID = table2.CustomerID AND table1.inquerydate: orderdate GROUP BY table1.CustomerID)
: 包子 please,当然date那个可以自己改一下,懒得写了

avatar
b*s
7
add more sugar
avatar
B*g
8
看了“最”字就知道要用partition by

【在 m**********2 的大作中提到】
: 有2个table
: table1:
: tablID, CustomerID, inquery code,inquerydate
: 34, 12345, A, 1/1/2010
: 35, 12346, A, 1/3/2010
: 36, 12345, B, 1/5/2010
: 37, 12346, B, 1/8/2010
: 38, 12345, C, 1/20/2010
: 39, 12346, C, 1/24/2010
: ......

avatar
d*e
9
add some gelatin.
avatar
m*2
10
给个具体的code? 包子送上。谢。

【在 B*****g 的大作中提到】
: 看了“最”字就知道要用partition by
avatar
f*t
11
打过了会出渣滓似的东西
试试把盆冰冰再打,也许会好一点

了,

【在 g******3 的大作中提到】
: 好像也不是light的,但是的确不是heavy的,看来下次要买heavy的来试试了 ,我觉得我
: 是不是打得时间太长了有点,唉,老公安慰我说就跟做实验似的,不对了就倒掉重来好了,
: :(

avatar
B*g
12
你太懒了。
select ...
from
(select ..., rank() over (partition by t1.ID order by t1.date desc) rn
from t1, t2
where t1.id = t2.id and t1.date <= t2.date)
where rn = 1

【在 m**********2 的大作中提到】
: 给个具体的code? 包子送上。谢。
avatar
C*e
13
可以用不锈钢盆,做冰水浴打

啊?

【在 g******3 的大作中提到】
: 蛋糕达人快点来帮忙,为什么我从超市买的whipping cream打出来总是不够硬阿,不像很
: 多mm做的看起来都很硬挺很光滑的样子 ,我只是抹蛋糕表面的时候就觉得很软塌塌的,
: 更别说拿来裱花了,肯定站不住.是因为什么原因呢 ? 打发时间和技巧应该注意什么啊?
: 真心求教

avatar
e*e
14
Well, the difference between group by and partition by is that group by is
an aggregate function while partition by is analytical. In this specific
case, we just need to know the max for every customerID (of course, subject
to certain constraints) instead of listing every tuple partitioned by
customerID. While using partition is correct, it is not necessary.
avatar
m*2
15
同意。你的code比北京的好用。。。

subject

【在 e***e 的大作中提到】
: Well, the difference between group by and partition by is that group by is
: an aggregate function while partition by is analytical. In this specific
: case, we just need to know the max for every customerID (of course, subject
: to certain constraints) instead of listing every tuple partitioned by
: customerID. While using partition is correct, it is not necessary.

avatar
B*g
16
hehe.

is

【在 m**********2 的大作中提到】
: 同意。你的code比北京的好用。。。
:
: subject

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。