91-9990449935 0120-4256464 |
Oracle INNER JOINInner Join is the simplest and most common type of join. It is also known as simple join. It returns all rows from multiple tables where the join condition is met. Syntax Image representation of Inner Join Oracle INNER JOIN ExampleLet's take an example to perform Inner Join on two tables "Suppliers" and "Order1". Suppliers Order1 This example will return all rows from "suppliers" and "order1" table where there is a matching supplier_id value in both the suppliers and order1 tables. Execute the following queryOutput
Next TopicOracle OUTER JOIN
|