I have 3 tables linked with a left join. see example below:
SELECT s.suiteid, s.testid, s.naam, ms.id, ms.projectid, ms.naam FROM suites as s
left join tests as t on s.testid = t.id
left join meta_suites as ms on t.projectid = ms.projectid
where s.testid = 44
Bookmarks