How to do leftJoin in Query?

Hello everyone.

Sorry. I don’t speak English, I use a translator.

I need to instantiate the Query class and everything is OK but the problem is leftJoin. When I enter, according to the instructions, the name of the table and the condition as strings, I get a message that:

A join clause must be specified as an array of join type, join table, and optionally join condition.

I’ve tried many combinations.
SQL array name in array without key, with key as alias etc. Every time it creates me a query with an empty Join.

… FROM base LEFT JOIN `` GROUP BY …

How to do this join?

Plus, I need to make some joins.

Thanks.

The solution is to drop leftJoin and use join.

Thanks.