Created
March 26, 2015 20:34
-
-
Save cgsmith/37922dbd075fcdb37046 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Pre Zend 1.12.8 | |
*/ | |
$select = $this->getDbTable()->select(); | |
$select->from( | |
$this->_getDbTable()->info(Zend_Db_Table_Abstract::NAME), | |
array( | |
"trim(concat_ws(' ', user.nameprefix, user.firstname, user.lastname)) as name", | |
"user.email", | |
// more data similar to 'user.email' | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment