我的SQLite数据库中有一个列,用UTC存储时间值。我如何得到不同日子的数量?
下面给出了基于UTC天数的结果,这在当地时区是错误的:
select distinct(date(column)) from table
下面也会考虑时间,这是错误的:
select distinct(datetime(column,'localtime')) from table
将日期转换为本地时间是否有意义如下:
select distinct(date(column,'localtime')) from table
我不确定在localtime
上使用date
转化而不是datetime
是否有效。