SQL Non Equi Join
NON EQUI JOIN
The SQL NON EQUI JOIN uses comparison operator instead of the equal sign like >, <, >=, <= along with conditions.
Pictorial presentation of SQL Non Equi Join:

Syntax:
SELECT * FROM table_name1, table_name2 WHERE table_name1.column [> | < | >= | <= ] table_name2.column;
Example:
Here is an example of non equi join in SQL between two tables
Sample table: orders
Sample table: customer
To get order number and order amount columns from orders table aliased as 'a' and customer name and working area columns from customer table aliased as 'b' after joining said two tables with the following condition -
1. order amount of orders table matches any of the opening amounts of customer table,
the following SQL statement can be used:
SQL Code:
SELECT a.ord_num,a.ord_amount,b.cust_name,b.working_area
FROM orders a,customer b
WHERE a.ord_amount
BETWEEN b.opening_amt AND b.opening_amt;
Output:
ORD_NUM ORD_AMOUNT CUST_NAME WORKING_AREA --------- ---------- ---------------------------------------- ------------- 200110 3000 Micheal New York 200101 3000 Micheal New York 200108 4000 Cook London 200119 4000 Cook London 200113 4000 Cook London 200108 4000 Karl London 200119 4000 Karl London 200113 4000 Karl London
Key points to remember
Click on the following to get the slides presentation -
Here is a new document which is a collection of questions with short and simple answers, useful for learning SQL as well as for interviews.
Check out our 1000+ SQL Exercises with solution and explanation to improve your skills.
Previous: SQL EQUI JOIN
Next: SQL INNER JOIN
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join