So, I have SQL string with order by part like:
ORDER BY
client_id>0 DESC,
date_last DESC
I want to have similar condition in Query builder. What i need to add? (especially for "client_id>0")
$qr->orderBy([
'client_id' => SORT_DESC,
'date_last' => SORT_DESC,
]);