hey guys this is a doubt... how to best solve an SQLite query that picks up a records BETWEEN two given dates...
I HAVE THE QUERY SYNTAX.. thats correct
but heres the problem
in this table i have 3 columns
ORDERid(TEXT)... this is actually the date the order is placed... is entered in "dd/mm/yyyy" format
FirstName(TEXT)... this is just a regular name of the buyer
Age(NUMBER)... this is a number for age of buyer
considering this "dd/mm/yyyy" format isnt followed by SQLite... and...
when i made the DB this very column (ORDERid) i declared as text...
what is the best way i could still run a query to get records that are between.. like eg.
I HAVE THE QUERY SYNTAX.. thats correct
but heres the problem
in this table i have 3 columns
ORDERid(TEXT)... this is actually the date the order is placed... is entered in "dd/mm/yyyy" format
FirstName(TEXT)... this is just a regular name of the buyer
Age(NUMBER)... this is a number for age of buyer
considering this "dd/mm/yyyy" format isnt followed by SQLite... and...
when i made the DB this very column (ORDERid) i declared as text...
what is the best way i could still run a query to get records that are between.. like eg.