web-dev-qa-db-ja.com

DateDiffを使用して、期間を分単位で検索する

DatediffcolumnAの間の期間を見つけるためにcolumnBを使用しようとしています。

SELECT datediff (minute, stime, etime)
from Exceptions2
where stime = [exceptions2].starttime
and etime = [exceptions2].endtime

これによりエラーが発生します。誰かが私が間違っていることで私を助けてくれますか?

21
Doug Ancil

これを試してみてください。なぜstime = [exceptions2] .starttimeおよびetime = [exceptions2] .endtimeなのかわかりません

SELECT datediff(minute, starttime, endtime) from Exceptions2
37
Raymund