select distinct d.id as license_id, p.id as person_id, p.name , p.ssn
from drivers_license d
join person p
on d.id = p.license_id
join facebook_event_checkin t
on t.person_id = p.id
where d.height >= 65 and
d.height <= 67 and
d.hair_color == 'red' and
d.car_make == 'Tesla'