I am trying to get the Average Date in sql and am not sure how to do this. I have the following fields:
ID Date1 Date2 Date3
select id, date1, date2, date3 ,Cast( (cast(date1 as Float) + cast(date2 as Float) + cast(date3 as Float))/3 as Datetime) as AvgDate from yourtable