Collections:
Query with a Right Outer Join in MySQL
How To Write a Query with a Right Outer Join in MySQL?
✍: FYIcenter.com
If you want to query from two tables with a right outer join, you can use the RIGHT OUTER JOIN ... ON clause in the FROM clause. The following query returns output with a right outer join from two tables: fyi_links and fyi_rates. The join condition is that the id in the fyi_links table equals to the id in the fyi_rates table:
mysql> SELECT l.id, l.url, r.comment FROM fyi_links l RIGHT OUTER JOIN fyi_rates r ON l.id = r.id; +------+-------------------+-----------+ | id | url | comment | +------+-------------------+-----------+ | 101 | dev.fyicenter.com | The best | | 102 | dba.fyicenter.com | Well done | | 103 | sqa.fyicenter.com | Thumbs up | | NULL | NULL | Number 1 | | NULL | NULL | Not bad | | NULL | NULL | Good job | | NULL | NULL | Nice tool | +------+-------------------+-----------+ 7 rows in set (0.00 sec)
Note that a right outer join may return extra rows from the second (right) table that do not satisfy the join condition. In those extra rows, columns from the first (left) table will be given null values.
The extra rows returned from the right outer join in this example represents rates that have no links.
⇒ Query with a Full Outer Join in MySQL
⇐ Query with a Left Outer Join in MySQL
2017-09-28, 2036🔥, 0💬
Popular Posts:
How to execute statements under given conditions in SQL Server Transact-SQL? How to use IF ... ELSE ...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...