I am new bee of Zf2, so please suggest how should I create following sql in Zend framework 2?
Select mt1.*, (select count(mt2.parent_id) from md_type as mt2 where mt2.parent_id = mt1.id)) as cnt from md_type as mt1
|
I am new bee of Zf2, so please suggest how should I create following sql in Zend framework 2? Select mt1.*, (select count(mt2.parent_id) from md_type as mt2 where mt2.parent_id = mt1.id)) as cnt from md_type as mt1 |
|||
|
|
|
You can try this:
this would produce:
|
|||
|
|
|
Please try this
Reference: "subquery" in Zend Framework2 |
|||
|
|