I'm having trouble with coming up with a query to find the average age of the buses used for each bus company from the following schema:
buscompany
company_id | name
1 NED
2 JIM
bustype
type_id | date_made
1 2006-01-26
2 1999-05-05
3 2000-09-01
route
route_id | bustype | bus_company
1 2 1
2 1 1
3 1 1
4 3 2
5 3 2
6 1 2
7 2 2
In this example NED's average bus age is 4246.666 = 4247 days assuming today is 2013-03-18.
What would the whole query look like?