Hello, I have a pretty simple question.. Can you do less than or equal to comparisons in regards to datetime values within T-SQLfor example:Where dateadd(d,0,cast(#Multiticket.DateCustomerConfirm as datetime)) >= dateadd(d,0,cast(#CompareTemp.DateFirstCallBack as datetime))
Where Both columns are datetime values. Ex: 01/06/09 and 01/08/09Does this comparison return valid results or is sql server 2000 not capable of this logic?