回答編集履歴
1
コード修正
test
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
|
35
35
|
```sql
|
36
36
|
|
37
|
-
select F
|
37
|
+
select F1, Sum(F2) As F2_Sum
|
38
38
|
|
39
39
|
from table1
|
40
40
|
|
@@ -114,7 +114,7 @@
|
|
114
114
|
|
115
115
|
select F1, F2
|
116
116
|
|
117
|
-
from table2 inner join table3 on table2 .FKey = table
|
117
|
+
from table2 inner join table3 on table2 .FKey = table3.FKey;
|
118
118
|
|
119
119
|
```
|
120
120
|
|