任意时间 -> 北京时间戳
select strftime(’%s’,‘2019-06-28 01:02:03’,’-8 hour’)
insert into ALGORITHM_CONFIG (PARAM1) values ( (select strftime(’%s’,‘2019-06-28 01:02:03’,’-8 hour’)) );
时间戳 -> 标准字符串格式
select datetime(PARAM1,‘unixepoch’,‘localtime’) as PARAM from ALGORITHM_CONFIG;