我正在尝试根据两个日期进行计数,但我不确定它在查询中的外观。我有两个日期字段;我想根据这些日期进行计数。
<cfquery>
SELECT COUNT(*)
FROM Table1
Where month of date1 is one month less than month of date2
</cfquery>
我正在尝试根据两个日期进行计数,但我不确定它在查询中的外观。我有两个日期字段;我想根据这些日期进行计数。
<cfquery>
SELECT COUNT(*)
FROM Table1
Where month of date1 is one month less than month of date2
</cfquery>