How can i do a very simple join in nette database, resulting in a query like this?
SELECT * FROM Book LEFT OUTER JOIN Author ON Book.author_id = Author.id
I have found endless tutorials on how to join combined with where clausules, order by, group by and what not, but not single tutorial on a simple join like this.
I forgot to specify, I use PHP, so i need something like $context->table('Book')->join('author');
, but that of course doesn't work.