I am learning PHP/mySQL by creating a simple diary which allows me to make an entry and record the date and time I make the entry.
I have my tables set up with an entry column(varchar) and a date column(Datetime).
Now I want to query my table to get all entries for the 21 January 2000 for instance but is this possible without also providing the exact time the entry was made?
Can I query a Datetime column with the date alone?
Is the answer to have seperate Date and Time columns?
many thanks.
Kenny