I want to get details from data base in which date is of format 08-MAR-14 03.52.17.000000000 PM .I know its possible to get date
SELECT * FROM Table WHERE somecol >= '2011-01-01' AND somecol <= '2011-01-30'
in this data i am having time also and how is it possible to get only date and I am using java to connect with oracle and html5+java script+j query.
DATE()function to extract the year-month-day part. E.g.DATE(somecol) > '2011-01-01'