I have a table with numbers:
15/10/2016 3/03/2016 4/05/2016 I want to use the operator between , but I can't. I tried to use the strftime() function
SELECT date, strftime('%Y', date) as year The result is NULL.
Full request:
SELECT name, s_name, date, avg(price) FROM supp_order WHERE name = 'Ivan' and s_name = 'Ivanovich' and date_duties between '4/05/2016' and '15/10/2016' The problem with the date format, I do not know how to change.