Con questa query:
sSQL="SELECT * FROM tblNews WHERE (News.tipo=1 AND News.attiva=True) AND Timestamp <= Datevalue('" & Now() & "') AND fine >= Datevalue('" & Now() & "') order by ID DESC; "
estraggo solo i record che abbiano come campo "fine" una data non precedente ad oggi.
Se volessi estrarre tutti i record degli ultimi 7 giorni o dell'ultima settimana?
sSQL="SELECT * FROM tblNews WHERE (News.tipo=1 AND News.attiva=True) AND Timestamp <= Datevalue('" & Now() & "') AND fine >= Datevalue('" & Now() & "') order by ID DESC; "
estraggo solo i record che abbiano come campo "fine" una data non precedente ad oggi.
Se volessi estrarre tutti i record degli ultimi 7 giorni o dell'ultima settimana?