Hello all,
I am new to the forums, just joined today. What brings me here are my new adventures in learning hibernate, HQL, and Oracle at the same time.
I have sucessfully written my first HQL but am curious about comparing dates. If I say as part of my query
Code:
where myDate >= sysdate
will this return rows where the data in column myDate has a date that occurs at any time during "today" ? For example, if there are three rows in the table, and all of the myDate value's are dates that are at various times during today, 8AM, 10AM, 5PM, will that date compare return all three rows ? Does the time portion of sysdate matter?
Thank you!
Kim