如何按字符串查询过滤月份
How to filter month by string query
我的顶点代码中有这样的 SQL:
public static list<FB_Employees__c> getRecords() {
return [
SELECT Name, Date_of_birth__c
FROM FB_Employees__c
WHERE CALENDAR_MONTH(Date_of_birth__c) = 7
];
}
它会过滤所有7月生日的用户,这样做,我每个月都得改代码,我想我应该有另一种方法来自动完成,我想办法使用字符串查询但我还不熟悉它?谁能建议我改进代码的想法?
将其更改为如下所示:
WHERE Date_of_birth__c = THIS_MONTH
THIS_MONTH
让我们可以轻松地与当前月份进行比较。
使用CALENDAR_MONTH(Date_of_birth__c) = THIS_MONTH
,这将自动比较DOB与当前月份
Date class 有适合您情况的完美方法:month()
Returns the month component of a Date (1=Jan).
所以你的 APEX 方法应该是:
public static list<FB_Employees__c> getRecords() {
Integer thisMonth = System.today().month();
return [
SELECT Name, Date_of_birth__c
FROM FB_Employees__c
WHERE CALENDAR_MONTH(Date_of_birth__c) = :thisMonth
];
}
您只想过滤那些生日在当月的员工?
首先从当前日期获取月份作为整数。
然后使用单引号 ('....') 在您的查询中插入该值,将月份值括起来并将整个查询视为单个字符串。
public static list<FB_Employees__c> getRecords()
{
int thisMonth = Calendar.getInstance().get(Calendar.MONTH) + 1; // Since Java month range is 0..11
return [
"SELECT Name, Date_of_birth__c
FROM FB_Employees__c
WHERE CALENDAR_MONTH(Date_of_birth__c) = '" + thisMonth + "';"
];
}
我的顶点代码中有这样的 SQL:
public static list<FB_Employees__c> getRecords() {
return [
SELECT Name, Date_of_birth__c
FROM FB_Employees__c
WHERE CALENDAR_MONTH(Date_of_birth__c) = 7
];
}
它会过滤所有7月生日的用户,这样做,我每个月都得改代码,我想我应该有另一种方法来自动完成,我想办法使用字符串查询但我还不熟悉它?谁能建议我改进代码的想法?
将其更改为如下所示:
WHERE Date_of_birth__c = THIS_MONTH
THIS_MONTH
让我们可以轻松地与当前月份进行比较。
使用CALENDAR_MONTH(Date_of_birth__c) = THIS_MONTH
,这将自动比较DOB与当前月份
Date class 有适合您情况的完美方法:month()
Returns the month component of a Date (1=Jan).
所以你的 APEX 方法应该是:
public static list<FB_Employees__c> getRecords() {
Integer thisMonth = System.today().month();
return [
SELECT Name, Date_of_birth__c
FROM FB_Employees__c
WHERE CALENDAR_MONTH(Date_of_birth__c) = :thisMonth
];
}
您只想过滤那些生日在当月的员工?
首先从当前日期获取月份作为整数。
然后使用单引号 ('....') 在您的查询中插入该值,将月份值括起来并将整个查询视为单个字符串。
public static list<FB_Employees__c> getRecords()
{
int thisMonth = Calendar.getInstance().get(Calendar.MONTH) + 1; // Since Java month range is 0..11
return [
"SELECT Name, Date_of_birth__c
FROM FB_Employees__c
WHERE CALENDAR_MONTH(Date_of_birth__c) = '" + thisMonth + "';"
];
}