I'm trying to select records that have workdates greater than 4/1/2009.
workdate is of type Date is stamped with sysdate when inserted so it contains Date & Time
How can I achieve this?
workdate is of type Date is stamped with sysdate when inserted so it contains Date & Time
How can I achieve this?
Code:
SELECT * FROM tb_my_table
WHERE to_char(workdate, 'MM/DD/YYYY') > ('4/1/2009')