Apr 30, 2002 #1 teser Technical User Mar 6, 2001 194 US Need to write a query to fetch all projects started in the last day. My field is called 'DateSubmitted' HOw would I do this in my query??
Need to write a query to fetch all projects started in the last day. My field is called 'DateSubmitted' HOw would I do this in my query??
Apr 30, 2002 #2 karluk MIS Nov 29, 1999 2,485 US A good start would be select * from projects where date_submitted > sysdate-1; Upvote 0 Downvote