EuSQL has several built-in facilities for dealing with dates using the DATE_TIME datatype. In an
insert or delete query, when working with a DATE_TIME field, you should put the DATE_TIME inside of
quotes. The format must be:
YYYY-MM-DD HH:MM:SS
2006-1-11 09:10:33
2006-01-11
2006-1-11 9:11
2006-1
SELECT ORDER_NUM FROM SALES WHERE ORDER_DAY = DATE_TIME( '2006-01-10' );