I would like to pass a MYSQL query via Coldfusion the following date: 03/13/2010 So the query filters against it like so:
SELECT *
FROM myTable
WHERE dateAdded before or on 03/13/2010
I'd also like to be able to take 2 dates as ranges, from: 01/11/2000, to: 03/13/2010
SELECT *
FROMT myTable
WHERE dateAdded is ON or Between 01/11/2000 through 03/13/2010
Also, Is there a way to have one query that can handle either BOTH Date_Start and Date_END, or just one of the two?
thanks