To fetch a tree in nested sets we have to do a cartesian product (every with every).
select * from tree as t1, tree as t2
or
select * from tree as t1 cross join tree as t2
It was easy with zf1, but in zf2 there is no cross join when using \Zend\Db\Sql\Select object?
Is there any way to achieve it using Select()? Or plain sql query is the only way?
Googling failed me unfortunately, so thanks in advance for any suggestions.
A CROSS JOIN operation can be replaced with an (INNER) JOIN where the join clause always evaluates to true (1=1)
Zf2 example: