Apr 12, 2007 #1 crsdev Programmer Sep 29, 2006 96 US Hello ALL, Disregarding the time how can i compare the date. i.e. select * from sometable where somedate = sysdate. Thanks in advance
Hello ALL, Disregarding the time how can i compare the date. i.e. select * from sometable where somedate = sysdate. Thanks in advance
Apr 12, 2007 #2 SantaMufasa Technical User Jul 17, 2003 12,588 US Code: select * from sometable where trunc(somedate) = trunc(sysdate); Mufasa (aka Dave of Sandy, Utah, USA) [I provide low-cost, remote Database Administration services: www.dasages.com] Upvote 0 Downvote
Code: select * from sometable where trunc(somedate) = trunc(sysdate); Mufasa (aka Dave of Sandy, Utah, USA) [I provide low-cost, remote Database Administration services: www.dasages.com]