Hi,
I have a large dataset that I am trying to filter by date in such way that I only have October month, should be straightforward but somehow it doesn't recognize the date at all. Here is my sql code:
SELECT `earnings`, `date`
FROM `amazon_a9`
WHERE `date` BETWEEN "Oct 1, 2019" AND "Oct 31, 2019"
GROUP BY `date`
I have also tried the following just to make sure it sees the date
SELECT `earnings`, `date`
FROM `amazon_a9`
WHERE `date` = "Oct 25, 2019"
And it says: "No rows match your criteria" which is impossible as I copy-pasted this from the raw data. What am I missing here?
Thank you for your help in advance.