hi masond
Hope this helps
both the columns must be of the same datatype
when comparing ... to give correct results
to do this
you will have to change the datatype of any one column to the other column
in tsql to do this you have
- CAST
- CONVERT
example :
legacy.date_closed_c = cast ( current.date_closed_c as timestamp(6) )