How do I convert/cast the string April 04, 2016 12:00:00 to DATETIME in sql server 2005?
UPDATE I would like to compare dates like this :
SELECT *
from ZeroAndLackingRequest
WHERE request_date BETWEEN CONVERT(DATETIME,'April 04, 2016 12:00:00',103)
AND CONVERT(DATETIME,'April 04, 2016 11:59:59',103)
but it is not working. Any Ideas why?