这是我没有时区的时间戳。
`2016-03-26,23.59.03
问题是我有一个错误,指出"语法错误在#34; .03" 我不明白这一点,有人可以帮助我吗?感谢。
我正在使用PostgreSQL。
答案 0 :(得分:0)
使用ISO8601日期格式并减去30天,以证明其正确解释为日期格式:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
Dim addr() As Variant
Dim hasPrompted As Boolean
hasPrompted = False
addr = Array("$I$22", "$I$23", "$I$34", "$I$35", "$I$36")
Dim i As Long
For i = LBound(addr) To UBound(addr)
If Range(addr(i)).Value = "Red Level" And Not hasPrompted Then
MsgBox ("Please call maintenance immediately to refill reservoir")
hasPrompted = True
End If
Next i
Application.EnableEvents = True
End Sub
或
select date '2017-03-17T20:48:00' -30 AS ts
作品here