左连接右表中的第一个值?
我需要在条件下对表进行左连接,因此左表中的值仅选择右表中找到的第一个值,按时间排序,并且右表中的时间>比剩下的时间。
如何做到这一点?
谢谢。
I need to do left join on table under conditions, so value from left table picks only first value found in right table, sorted by time, and that time in right table is > than time in left.
How that can be done?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许是这样的构造(使用子查询而不是联接):
由于您没有提供表/列名称,因此使用了我自己的一个表作为示例。
Perhaps a construct like this (using sub-query rather than a join):
Have used one of my own tables for the sample, since you didn't provide table/column names.