dbWriter cast date time SQL code
SQL stores the date and time in the DATETIME fields, if you
need to compare just the date to this field then here is the code to to
strip the time off and just leave the date:
| CAST(FLOOR( CAST( YOURDATEFIELD AS FLOAT ) )
AS DATETIME )
|
|