作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我是一名优秀的程序员,十分优秀!