Home >> MySql >> What is natural join in MySql

What is natural join in MySql

Natural join also known as Inner join.

R1 inner join R2

Those tuple of R1 will get combined with tuple of R2 if they have same value for the common attribute.

common attribute or column that have the same name in both table

Note-if in two table attribute same show common element from both table will be fetch.

Example 1

R1 table

A           B           C

X           10         100

Y           20         100

Z           30         200

S           40         400

R2 table

C           D

100        L

200        M

300        N

Output

A       B       C       D

X       10     100      L

Y       20     100     L

Z       30     200      M

Example 2

R1 table

A           B           C

X           10         100

Y           20         100

Z           30         200

S           40         400

R2 table

C           D

100        L

200        M

300        N

100        T

Output

A       B       C       D

X       10     100      L

Y       20     100     L

Z       30      200     M

X       10     100      T

Y       20     100     T

 

Post Your Comment

Next Questions
What is outer join
What is self join
What is aggregate function
COUNT(*) aggregate function
AVG() aggregate function
MIN() aggregate function
MAX() aggregate function
SUM() aggregate function
STDED() aggregate function
CONCAT() function
GROUP_CONCAT() function
CONCAT_WS() function
CHECKSUM_AGG() aggregate function
ABS(n) aggregate function
POWER(m,n) aggregate function
ROUND() aggregate function
SQRT() aggregate function
GREATEST() aggregate function
LEAST() aggregate function
EXP() aggregate function
EXTRACT() aggregate function
MOD() aggregate function
TRUNC() aggregate function
FLOOR() aggregate function
CEIL() aggregate function

Copyright ©2022 coderraj.com. All Rights Reserved.