Select name_A,name_B
From
A inner join B on A.Id_a = B.Id_a
this returns the values based on the A.Id_a = B.Id_a but I have also records in table A which are not related to table B which i want to read out as the same time. In this case I want to read all name_A and name_B based on A.Id_a = B_a.Id. Any Idea
Do a left join: