Sorry about the generic title, I didn't know how to phrase this.
I have a DateTime in my MySQL DB. For example: 14/06/2016 15:01:00
When I try to do a query to find dates which equal certain dates it won't find anything, unless I used the Americanised date format. Yet it's stored in the English way.
Eg:
Select * FROM tbl WHERE Date = '14/06/2016'
- Doesn't return any results
But Select * FROM tbl WHERE Date = '2016/06/14'
does return results.
Why is this? And how can I swap it around?