回答編集履歴

1

推敲

2019/07/09 07:50

投稿

sazi
sazi

スコア25195

test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  from (
8
8
 
9
- select test_cases_id, group_concat(test_condition_id order by test_condition_id) partern
9
+ select test_cases_id, group_concat(test_condition_id order by test_condition_id) pattern
10
10
 
11
11
  from test_case_test_conditions
12
12
 
@@ -14,7 +14,7 @@
14
14
 
15
15
  ) test
16
16
 
17
- where partern='1,2,3' -- '1,2,3は登録しようとするパターン
17
+ where pattern='1,2,3' -- '1,2,3は登録しようとするパターン
18
18
 
19
19
  ```
20
20