select distinct c.name,
c.age,
c.gender,
f.restaurant_name
from food_orders f left join customers c on f.customer_id=c.customer_id
order by c.name
적었더니 name age restaurant_name이 누락됐어요 이유가 뭔가요