I am joining tables using sql with the following query:
select * from table name1 a
left join name2 b on b.ida = a.id
left join name3 c on c.idb = b.id
My doubt is my main table is name1 and left joining name2 table using foreign key. I am joining name3 table also where there is no relation between name1 and name3. Is it a good practise ?