Created
May 25, 2016 18:27
-
-
Save dan81989/9d8858796184fdfc375b9d21fa3147f8 to your computer and use it in GitHub Desktop.
Right join is a mirror version of the left join and allows to get a list of all orders, appended with customer information, if such information is available:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select first_name, last_name, order_date, order_amount | |
from customers c | |
right join orders o | |
on c.customer_id = o.customer_id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can you explain where is
Order_date and order_amount in your table
07/21/1795 | $25.50
11/27/1787 | $14.40
please check in right join and respond