我table
database
column
date in Long
public static List<Plan> getPlanListByMonth(SQLiteDatabase db, DateTime date) {
String where = "date" + " = '"+ "2015-11-04" +"'";
Cursor cursor = db.query(TABLE_NAME, null, where,
null, null, null, null, null);
return getPlanList(cursor);
}
。 有没有简单的方法可以按月获取所有日期?例如,我需要10月份的所有日期。白天我用的是:
Range<Int>
但我不知道如何创建 where 条件以按月获取所有值。