回答編集履歴
2
追加
answer
CHANGED
|
File without changes
|
1
追加
answer
CHANGED
|
@@ -2,4 +2,6 @@
|
|
|
2
2
|
```
|
|
3
3
|
create temp table abc (days char(8));
|
|
4
4
|
insert into abc(days)values(to_char(now(),'YYYYMMDD'));
|
|
5
|
+
|
|
6
|
+
insert into abc(days) select to_char(now(),'YYYYMMDD');
|
|
5
7
|
```
|