Learn How To Use Non-Equi SQL JOINs -​We also don't have to use the equality operator when joining tables. We are free to use other comparison operators (<, >, <=, >=, !=, <>) or the BETWEEN operator:

PHOTO EMBED

Wed Mar 22 2023 00:20:29 GMT+0000 (Coordinated Universal Time)

Saved by @vnmshenoy #undefined


SELECT
  auctioneer.name,
  item.name
FROM auctioneer
JOIN item
  ON auctioneer.funds > item.price
content_copyCOPY

​We also don't have to use the equality operator when joining tables. We are free to use other comparison operators (<, >, <=, >=, !=, <>) or the BETWEEN operator:

https://learnsql.com/track/sql-practice/course/joins/non-equi/exercises/summary