I need a way of changing the format the date format from datetime to just the date in an SQL query, I have tried:

$sql="SELECT created_by FROM meetings WHERE STR_TO_DATE('date_start', 'Y-m-d')='$CorrectDate'";

but to no avail.

date_start is the field in the SQL table.

Any help welcome!!!

link|improve this question
You don't say what your DBMS is: MySQL? Oracle? SQL Server? – Álvaro G. Vicario Jan 31 '11 at 17:48
@Alvaro: STR_TO_DATE is only available in MySQL. – Quassnoi Jan 31 '11 at 17:49
feedback

1 Answer

SELECT  created_by
FROM    meetings
WHERE   date_start >= $correctDate
        AND date_start < $correctDate + INTERVAL 1 DAY

Unlike any solution which involves a function or an expression over date_start, this one is sargable, i. e. able to use an index on date_start efficiently.

link|improve this answer
if the format in SQL is Datetime, would this not still return the time also – Bift Jan 31 '11 at 17:45
@Bift: return where? Is created_by a date column also? – Quassnoi Jan 31 '11 at 17:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.