使用 DateDiff 查找持续时间(以分钟为单位)
我正在尝试使用 Datediff
来找出 columnA
和 columnB
之间的持续时间。
SELECT datediff (minute, stime, etime)
from Exceptions2
where stime = [exceptions2].starttime
and etime = [exceptions2].endtime
这会产生错误。谁能帮我解决我做错的事情吗?
I am trying to use Datediff
to find out the duration between columnA
and columnB
.
SELECT datediff (minute, stime, etime)
from Exceptions2
where stime = [exceptions2].starttime
and etime = [exceptions2].endtime
This produces errors. Can anyone please help me with what I'm doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个怎么样,不知道为什么你有 stime = [exceptions2].starttime 和 etime = [exceptions2].endtime
how about trying this, not sure why you have stime = [exceptions2].starttime and etime = [exceptions2].endtime