Mysql
 sql >> Base de données >  >> RDS >> Mysql

SQL joindre 2 tables à 1 table

Essayez une jointure à gauche :

select * from task t
left join unit ut on ut.id = t.unit_id
left join building bt on bt.id = t.building_id