[php] multijoin

[php] multijoin

scipiosoftscipiosoft Posts: 18Questions: 8Answers: 0

have better way to do this?

$editor->leftJoin( '[dbo].[translations] as override', 'def.t_key = override.t_key', 'AND ', "def.id != override.id AND override.brand = '".$this->brand."' " );

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,822Questions: 1Answers: 10,127 Site admin
    Answer ✓

    Currently no - I'm afraid that complex join expressions are not well supported in Editor's PHP libraries at the moment. As you've seen, and other threads note, it is possible to use complex expressions, but it isn't directly supported at the moment.

    Allan

This discussion has been closed.