Thread
:
fetchAll order_by and ASC/DESC?
View Single Post
#
3
(
permalink
)
10-18-2007, 08:10 PM
celavi
Junior Member
Join Date: Jun 2007
Posts: 1
Zend_Db_Select
Try the Zend_Db_Select object!
/** $db Zend_Db_Adapter */
$select = $db->select()
->from('table', array('column1', 'column2'))
->order(array('column1 DESC', 'column2 ASC'));
$results = $db->fetchAll($select);
Regards,
AlesL
__________________
Internet Solutions - web development na sto in en način
celavi
View Public Profile
Send a private message to celavi
Find all posts by celavi