I have a Users table that has an element called "date". I would like to make these pseudocode queries work in Java:
select * from Users WHERE date=today
and also
select * from Users WHERE date "in this hour"
How can I write the queries?
I am using Google App Engine, and the date was initially created using java.util.Date.
Please help. Thanks