scooby
04-28-2004, 11:03 PM
How can I retrieve information from an access database where the date is today or in the coming 7 days.
My table = Fixtures, with a field for DATE, and a field for TEAM.
I use very basic SQL SELECT scripts like that below
<% sqlString = "SELECT * FROM FIXTURES ORDER BY DATE DESC"
SET RS = oConn.Execute(sqlString)
WHILE NOT RS.EOF
%>
<%=RS( "date")%>
<%=RS( "team")%>
Any ideas??
Thanks
My table = Fixtures, with a field for DATE, and a field for TEAM.
I use very basic SQL SELECT scripts like that below
<% sqlString = "SELECT * FROM FIXTURES ORDER BY DATE DESC"
SET RS = oConn.Execute(sqlString)
WHILE NOT RS.EOF
%>
<%=RS( "date")%>
<%=RS( "team")%>
Any ideas??
Thanks