質問編集履歴

1

RIGHT JOINと表記する場所をLEFT JOINと表記していたため修正

2016/06/15 01:15

投稿

YashaWedyue
YashaWedyue

スコア830

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  ```SQL
12
12
 
13
- -- LEFT OUTER JOIN
13
+ -- LEFT JOIN
14
14
 
15
15
  SELECT table1.colum1, table2.colum1
16
16
 
@@ -22,11 +22,11 @@
22
22
 
23
23
  ```SQL
24
24
 
25
- -- RIGHT OUTER JOIN
25
+ -- RIGHT JOIN
26
26
 
27
27
  SELECT table2.colum1, table1.colum1
28
28
 
29
- FROM table2 LEFT JOIN table1 ON table2.colum1 = table1.colum1
29
+ FROM table2 RIGHT JOIN table1 ON table2.colum1 = table1.colum1
30
30
 
31
31
  ```
32
32