DateDiff("d",[date1],[date2]) will give you the difference between [date1] and [date2], in Days. Check out other options here.
With that in place you can get averages, sums, etc. For averages, paste this into SQL view:
SELECT Count([date1]) AS CountOfRecords...