<XMP> Hello All. I am new in programming and phalcon. What I am trying to do is execute below sql statement.
select ,count() from table_name GROUP BY date, status;
and make table list including "Count(*)" result.
I could get the result (with no count(*)) and make list by below.
$Invoices = Invoices::find(["group" => "status, date","order" => "date"]);
but I coundn't find out how to get count() number and add count() result column.
If anyone can help. I appliciate it.