Is there any way to take the difference between two datetime in sql server?
datetime
For example, my dates are
2010-01-22 15:29:55.090
select datediff(millisecond,'2010-01-22 15:29:55.090','2010-01-22 15:30:09.153') / 1000.0 as Secs result: Secs 14.063
Just thought I'd mention it.