gpt4 book ai didi

mysql - 如何从自连接表中获取最大stop_date

转载 作者:行者123 更新时间:2023-11-29 20:42:31 25 4
gpt4 key购买 nike

Max 函数在存储过程中自连接表时花费很长时间。

请建议其他有效的方法来做到这一点。

查询

Select a.*,b.* from acct a join acct b
On a.acctno=b.acctno
Join finance c
On a.acctno=c.acctno
Where a.insertdate between start_date and end_date
And b.stop_date=(select max(stop_date) from acct where acctno=b.acctno and addr_code=b.addr_code and unique_id<>a.unique_id and stop_date<=end_date)

最佳答案

使用这个,希望它会有所帮助。

Select a.*,b.* from acct a,acct b,finance c
where a.acctno=b.acctno
and a.acctno=c.acctno
and a.insertdate
between a.start_date and a.end_date
And b.stop_date=(select max(stop_date) from acct a,acct b
where a.acctno=b.acctno
and a.addr_code=b.addr_code
and a.unique_id<>b.unique_id
and a.stop_date<=a.end_date)

关于mysql - 如何从自连接表中获取最大stop_date,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38562487/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com