Hacker News new | ask | show | jobs
by ako 868 days ago
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.
2 comments

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 ?