回答編集履歴

1

コード修正

2021/11/04 04:32

投稿

hatena19
hatena19

スコア34075

test CHANGED
@@ -34,7 +34,7 @@
34
34
 
35
35
  ```sql
36
36
 
37
- select Fa, Sum(F2) As F2_Sum
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 = table23.FKey;
117
+ from table2 inner join table3 on table2 .FKey = table3.FKey;
118
118
 
119
119
  ```
120
120