Ask a Question related to Dreamweaver AppDev, Design and Development.
-
cdlcruz #1
filtering by Date in Recordset
I want to filter displayed records,showing only dates equal to or greater than
"today".
SELECT *
FROM tblEvents
WHERE eventDate >= **** this is where I need the syntax to place today's
date.
ORDER BY eventDate ASC
If it matters, I am pulling data from an MS Access table.
Thanks.
Catherine de la Cruz
cdlcruz Guest
-
PHP Recordset Filtering
I am making my index page as a blog, and I want the most recent entry to display completely, then have the entries that were previous to display... -
Filtering a recordset
Hi, I have a database query that pulls out records from a business directory database. In the DB are fields like ratings, company name, and... -
Help with RecordSet filtering
Hi all, I have a page with a recordset built that displays the data from my releases database. The purpose of this page is to show people all... -
filtering recordset
I am trying to pull a recordset that has the following items: ID Name Description Image1 Image2 Image3 DateAdded Is there anyway that I could pull... -
Filtering a recordset with a Checkbox
I filter a recordset like this WHERE recshow = 'yes' And with text fields in my Access database it works fine but THIS TIME I want to do it with a... -
Julian Roberts #2
Re: filtering by Date in Recordset
Try
SELECT *
FROM tblEvents
WHERE eventDate >= Date()
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest
-



Reply With Quote

