这是我的表代码

CREATE TABLE  InformationTable"
            + "(ID INTEGER, "
            + " ConfirmDate TEXT , "
            +" Counter INTEGER DEFAULT 99999"
            +" )";


我想选择一个有关InformationTable的查询。我想这样创建查询;

Select * from InformationTable where datetime(ConfirmDate) IS IT TODAY()


我该怎么做 ?

最佳答案

如果您的日期存储为TEXT ISO8601字符串(“ YYYY-MM-DD HH:MM:SS.SSS”),请选择今天的行:

select * from InformationTable where date(ConfirmDate) == date('now');

08-06 10:11