如何从 SQL 函数中选择最小值?
我想获取日期列和当前日期之间的差异,找到最小值并将其存储在变量中。
我有:
DECLARE @DAY AS INTEGER;
SET @DAY =
SELECT MIN (
SELECT DATEDIFF(DAY, date_col, GETDATE())
FROM tb1);
但是 min 函数不接受 select 和 datediff 函数。
I want to take the difference between my date column and the current date, find the minimum and store it in a variable.
I have:
DECLARE @DAY AS INTEGER;
SET @DAY =
SELECT MIN (
SELECT DATEDIFF(DAY, date_col, GETDATE())
FROM tb1);
but the min function isn't accepting the select and the datediff function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试以下操作:
您不需要嵌套选择。
Try the following:
You don't need the nested select.