Archive for September, 2011
ORDER BY that sorts NULLS last with propel – Symfony 1.0
This propel snippet is an example on how to sort an int column ascending and putting NULLs last
$criteria->addAscendingOrderByColumn('IF(ISNULL('.FanPeer::CURRENT_CHART.'),1,0),'.FanPeer::CURRENT_CHART, Criteria::CUSTOM);