This is personal, I'm having a hard time creating a date search in my android sqlite database. I wanted to search the tables by date, if possible, I wanted to do a conditional that would detect the current date, and only update the table (adding certain values) not needing to create new tables.
From now on I thank you greatly for giving me a "light" on this question.
My table is this:
CREATE TABLE IF NOT EXISTS ENTRADA (
_id INTEGER NOT NULL
PRIMARY KEY AUTOINCREMENT,
DATA DATE NOT NULL DEFAULT CURRENT_DATE,
SALDO VARCHAR (20),
DEPOSITO VARCHAR (20),
ECONOMIAS VARCHAR (20),
SALARIODOMES VARCHAR (20),