如果时间戳与今天的日期匹配,则SQLite选择行

时间:2014-07-05 23:05:59

标签: android sqlite android-sqlite

如果条目时间戳与今天的日期匹配,我想从SQLite表中选择所有条目。

我正在查询SQLite数据库,如下所示:

// Tasks table name
private static final String TABLE_TASKS = "tasks";

// Tasks Table Columns names
private static final String KEY_ID = "id";
private static final String KEY_TIMESTAMP = "timestampGMT";
private static final String KEY_DESCRIPTION = "description";


String selectQuery = "SELECT  * FROM " + TABLE_TASKS + " WHERE "+ KEY_TIMESTAMP+">=date('now', '-1 day')";

此行为是我最接近的行为,但我不希望在过去24小时内选择所有条目。我只想选择今天的日期是否与时间戳匹配。

如何只选择表中时间戳与今天日期匹配的行。

日期格式为:2014-07-05 12:59:35在数据库中。

2 个答案:

答案 0 :(得分:7)

这有用吗?

date('now', 'start of day')

答案 1 :(得分:1)

对于当地时区:

date('now','localtime','start of day')