Datediff
とcolumnA
の間の期間を見つけるためにcolumnB
を使用しようとしています。
SELECT datediff (minute, stime, etime)
from Exceptions2
where stime = [exceptions2].starttime
and etime = [exceptions2].endtime
これによりエラーが発生します。誰かが私が間違っていることで私を助けてくれますか?
これを試してみてください。なぜstime = [exceptions2] .starttimeおよびetime = [exceptions2] .endtimeなのかわかりません
SELECT datediff(minute, starttime, endtime) from Exceptions2