Well I have a weird problem with MySQL.
I have a table like this :
# table_name #
==============
ID | DATE | RESULT_DATE
When I do
SELECT * FROM table_name
the output show me the table_name.RESULT_DATE as NULL or if there is a date, it show me the date.
BUT, when I do something like this :
SELECT * FROM table_name WHERE DATE BETWEEN '2017-05-03' AND '2017-05-08'
the output show me the table_name.RESULT_DATE as 00-00-0000 for ALL the elements, if they were NULL or if they had a Date element...
Why is this happening?
Thanks