This my Table codes
CREATE TABLE InformationTable"
+ "(ID INTEGER, "
+ " ConfirmDate TEXT , "
+" Counter INTEGER DEFAULT 99999"
+" )";
I want to a select query about InformationTable. I want to create query like this ;
Select * from InformationTable where datetime(ConfirmDate) IS IT TODAY()
How can i do it ?