sql – 调用本机函数’DATEDIFF’时参数计数不正确

前端之家收集整理的这篇文章主要介绍了sql – 调用本机函数’DATEDIFF’时参数计数不正确前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从这一行得到了错误
SELECT table.field
FROM table
WHERE table.month = 'october'
AND DATEDIFF(day,table.start_date,table.end_date) < 30

我列中的日期格式为m-d-yy

我需要将其转换为其他格式吗?如果是这样的话?

使用MariaDB

解决方法

根据MariaDB DATEDIFF的文档,只有两个参数:

Syntax

DATEDIFF(expr1,expr2)

Description

DATEDIFF() returns (expr1 – expr2)
expressed as a value in days from one date to the other. expr1 and
expr2 are date or date-and-time expressions. Only the date parts of the values are used in the calculation.

原文链接:/mssql/78755.html

猜你在找的MsSQL相关文章