時間と分の値だけを取得する REPORTDATE フィールドがあります。
reportdate.getTime()
たとえば、1439967368798 を返します。
reportdate からの TIME (時間と分) が次の範囲内にあるかどうかを比較したい:
if reportdate>=06:45 and reportdate<13:45 then a=1;
if reportdate>=13:45 and reportdate<20:45 then a=2;
if reportdate>=20:45 and reportdate<06:45 then a=3;
ウェブ上でいくつかの指示を見つけることができませんでした。getTime (1439967368798) から取得した値を使用するか、他の方法でこれを試す必要がありますか?