0

我们有一个包含 2 列的通知日志表 - 电子邮件地址 notification_sent_time

我需要找出在最后“n”秒内发送到特定电子邮件地址的通知数量。如何做到这一点?

谢谢

4

2 回答 2

0

您可能正在寻找 datediff 函数。

WHERE email_address = {email} and DATEDIFF('ss', notification_sent_time, GETDATE()) > 2
于 2013-07-12T17:55:55.903 回答
0

WHERE email_address = {email} AND notification_sent_time > {N seconds ago}

于 2013-07-12T17:50:34.600 回答