Android 今天是 SQLite
Android SQLite is it today
这是我的 Table 代码
CREATE TABLE InformationTable"
+ "(ID INTEGER, "
+ " ConfirmDate TEXT , "
+" Counter INTEGER DEFAULT 99999"
+" )";
我想select查询信息Table。我想创建这样的查询;
Select * from InformationTable where datetime(ConfirmDate) IS IT TODAY()
我该怎么做?
如果您的日期存储为 TEXT ISO8601
字符串 ("YYYY-MM-DD HH:MM:SS.SSS"),则 select 今天的行:
select * from InformationTable where date(ConfirmDate) == date('now');
这是我的 Table 代码
CREATE TABLE InformationTable"
+ "(ID INTEGER, "
+ " ConfirmDate TEXT , "
+" Counter INTEGER DEFAULT 99999"
+" )";
我想select查询信息Table。我想创建这样的查询;
Select * from InformationTable where datetime(ConfirmDate) IS IT TODAY()
我该怎么做?
如果您的日期存储为 TEXT ISO8601
字符串 ("YYYY-MM-DD HH:MM:SS.SSS"),则 select 今天的行:
select * from InformationTable where date(ConfirmDate) == date('now');