我需要从最后一天的 DB scadalts 获取数据。
我在表 pointValues 中有数据,其中列 pointValue 和 ts 但不是时间戳。
列ts
是类型BIGINT(20)
检查 ts 是 unixtime
SELECT
pointValue,
ts,
from_unixtime(ts),
YEAR(from_unixtime(ts)),
MONTH(from_unixtime(ts)),
DAY(from_unixtime(ts))
FROM
pointValues;
结果null
是错误的不是unixtime。
我不知道如何创建条件where
,因为 - 我不知道如何解释 column 中的值ts
。