select s.name, s.age from sailors s, reserves r, boats b where s.id = r.sId and r.bId = b.id and b.color = 'red' order by s.age;