回答編集履歴

1

調整

2019/05/08 10:36

投稿

yambejp
yambejp

スコア117744

test CHANGED
@@ -8,11 +8,9 @@
8
8
 
9
9
  (id int primary key,dt_str char(14),dt datetime as
10
10
 
11
- (str_to_date(substr(dt_str,1,8),'%Y%m%d%H%i%s')
11
+ (str_to_date(substr(dt_str,1,8),'%Y%m%d')
12
12
 
13
- +interval time_to_sec(concat(substr(dt_str,9,4),'00')) second)
13
+ +interval time_to_sec(substr(dt_str,9,4)*100) second);
14
-
15
- );
16
14
 
17
15
 
18
16