Fixed formatting for SQL RIGHT JOIN (English) (#26328)

Used consistent formatting for table results
This commit is contained in:
Sean
2019-02-16 23:36:33 -05:00
committed by Manish Giri
parent f9ffbe305c
commit ef369d5241

View File

@ -20,7 +20,7 @@ ON table1.column_name = table2.column_name;
### Complete table listings for reference ### Complete table listings for reference
food or LEFT table data foods or LEFT table data
```text ```text
+---------+--------------+-----------+------------+ +---------+--------------+-----------+------------+
| ITEM_ID | ITEM_NAME | ITEM_UNIT | COMPANY_ID | | ITEM_ID | ITEM_NAME | ITEM_UNIT | COMPANY_ID |
@ -47,7 +47,6 @@ company or RIGHT table data
| 17 | Foodies. | London | | 17 | Foodies. | London |
| 19 | sip-n-Bite. | New York | | 19 | sip-n-Bite. | New York |
+------------+---------------+--------------+ +------------+---------------+--------------+
``` ```
To get company name from company table and company ID, item name columns from foods table, the following SQL statement can be used: To get company name from company table and company ID, item name columns from foods table, the following SQL statement can be used:
@ -64,14 +63,15 @@ ON company.company_id = foods.company_id;
OUTPUT OUTPUT
```text ```text
COMPANY_ID COMPANY_NAME COMPANY_CITY COMPANY_ID ITEM_NAME +------------+---------------+--------------+------------+--------------+
---------- ------------------------- ------------------------- ---------- -------------- | COMPANY_ID | COMPANY_NAME | COMPANY_CITY | COMPANY_ID | ITEM_NAME |
18 Order All Boston 18 Jaffa Cakes +------------+---------------+--------------+------------+--------------+
15 Jack Hill Ltd London 15 Pot Rice | 18 | Order All | Boston | 18 | Jaffa Cakes |
15 Jack Hill Ltd London 15 BN Biscuit | 15 | Jack Hill Ltd | London | 15 | Pot Rice |
15 Jack Hill Ltd London 15 Cheez-It | 15 | Jack Hill Ltd | London | 15 | BN Biscuit |
16 Akas Foods Delhi 16 Chex Mix | 15 | Jack Hill Ltd | London | 15 | Cheez-It |
17 Foodies. London 17 Mighty Munch | 16 | Akas Foods | Delhi | 16 | Chex Mix |
NULL NULL NULL NULL Salt n Shake | 17 | Foodies. | London | 17 | Mighty Munch |
| NULL | NULL | NULL | NULL | Salt n Shake |
+------------+---------------+--------------+------------+--------------+
``` ```