0
我需要從最後一天的數據庫scadalts獲取數據。如何從最後一天從數據庫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
,因爲 - 我不知道如何解釋欄ts
中的值。