today:
32
yesterday:
46
Total:
998,731

INNER JOIN

admin 2023.05.19 22:09 Views : 36

What is Inner Join in Oracle?

The INNER join is such a join when equijoins and nonequijoins are performed, rows from the source and target tables are matched using a join condition formulated with equality and inequality operators, respectively. These are referred to as inner joins.

Syntax:

SELECT table1.column, table2.column
FROM table1
INNER JOIN table2
ON table1.column_name = table2.column_name;

Pictorial presentation of Syntax:

pictorial presentation of oracle inner join syntax

Pictorial presentation of Inner Join:

pictorial presentation of oracle inner join

Example:

The following SQL statement will return department no, department name and the city for a the same location no.

Sample table: locations

 

Sample table: departments

 

SELECT a.department_id, a.department_name, b.city
FROM departments a
INNER JOIN locations b
ON a.location_id = b.location_id;

Sample Output:

DEPARTMENT_ID DEPARTMENT_NAME                CITY
------------- ------------------------------ ---------------------
           60 IT                             Southlake
           50 Shipping                       South San Francisco
           10 Administration                 Seattle
           30 Purchasing                     Seattle
           90 Executive                      Seattle
          100 Finance                        Seattle
          110 Accounting                     Seattle
          120 Treasury                       Seattle
          130 Corporate Tax                  Seattle
          140 Control And Credit             Seattle
          150 Shareholder Services           Seattle
          160 Benefits                       Seattle
          170 Manufacturing                  Seattle
          180 Construction                   Seattle
          190 Contracting                    Seattle
          200 Operations                     Seattle
          210 IT Support                     Seattle
          220 NOC                            Seattle
          230 IT Helpdesk                    Seattle
          240 Government Sales               Seattle
          250 Retail Sales                   Seattle
          260 Recruiting                     Seattle
          270 Payroll                        Seattle
           20 Marketing                      Toronto
           40 Human Resources                London
           80 Sales                          Oxford
           70 Public Relations               Munich

27 rows selected.

INNER JOINS: SQL and other Relational Databases

Previous: JOINS with USING Clause
Next: LEFT OUTER JOIN

No. Subject Author Date Views
126 YEAR EXPRESSIONS admin 2023.05.25 34
125 TEST admin 2023.05.03 35
» INNER JOIN admin 2023.05.19 36
123 Monthly SUM admin 2023.05.22 36
122 ORACLE COLLECTION admin 2023.05.08 37
121 DATE -> DAY CONVERT SQL admin 2023.05.25 37
120 GRAPH (BAR) SQL SAMPLE admin 2023.05.25 38
119 GitHub.com/Oracle/APEX. admin 2023.05.04 39
118 TEST admin 2023.04.28 40
117 Global pages admin 2023.05.09 40
116 FINAL TEST admin 2023.05.08 43
115 LOOP TABLE UPDATE admin 2023.05.19 49
114 GP 영수증 (3) -01/04/2023 admin 2023.01.04 53
113 WHDR email address admin 2023.04.13 55
112 CHANGE TABLE NAME admin 2023.05.31 57
111 GP 영수증 본문 admin 2022.11.07 61
110 Building Mobile Applications with Oracle Application Express 5.0 admin 2017.11.25 63
109 GP - 영수증 (2) admin 2022.11.07 63
108 ipconfig admin 2023.06.03 66
107 Manufacturing resource planning (MRP II) admin 2018.02.14 78