質問編集履歴

1

書式間違い修正

2019/02/17 02:36

投稿

tajihiro
tajihiro

スコア14

test CHANGED
File without changes
test CHANGED
@@ -50,13 +50,21 @@
50
50
 
51
51
  case
52
52
 
53
- when '日付' = '2019-02-14' then 出勤 end as day1
53
+ when '日付' = '2019-02-14' then 出勤
54
54
 
55
- when '日付' = '2019-02-15' then 出勤 end as day2
55
+ end as day1,
56
56
 
57
- when '日付' = '2019-02-16' then 出勤 end as day3
57
+ case
58
58
 
59
+ when '日付' = '2019-02-15' then 出勤
60
+
61
+ end as day2,
62
+
59
- end
63
+ case
64
+
65
+ when '日付' = '2019-02-16' then 出勤
66
+
67
+ end as day3
60
68
 
61
69
  ```
62
70