Hacker News new | ask | show | jobs
by 3rd3 869 days ago
Could you give an example?
1 comments

This will be useful if you have a table with some related history records, e.g., products with product price history, and you want to get the latest price. The lateral join would get all prices for the current product, sort them by date and then pick the top row.
How does a lateral (cross) join compare to a window function in your example?
Is a lateral join more efficient than just saying where product = current sort by date desc ?