我有这个查询:
extern int *__geterrno(void);
#define errno (*__geterrno())
可以正常工作并返回预期结果。但是使用sqlite运行测试时失败。
SQLSTATE [HY000]:常规错误:1没有此类函数:FROM_UNIXTIME
我可以使用另一个可以通过测试的查询吗?
答案 0 :(得分:0)
尝试如下
select * from applications where created_at between
DATETIME(ROUND(1270080000 / 1000), 'unixepoch') and DATETIME(ROUND(1554076800 / 1000), 'unixepoch')