Ive column CREATEDDATE ( DATETIME ) I need to find all rows between two dates $startDate $endDate format ('d/m/Y') ?
SELECT * FROM TABLE
WHERE CREATEDDATE >= CONVERT(DATETIME, $startDate, 103)
AND CREATEDDATE <= CONVERT(DATETIME, $endDate, 103)
http://sqlfiddle.com/#!3/b0478/5 where is the problem ?!