add alias for description

This commit is contained in:
wlx 2011-12-25 02:40:36 +00:00
parent 0fd88b944f
commit e46372da70
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class ServiceController extends Zend_Controller_Action
if (empty($w)) $w=-180;
//$start=$this->_request->getParam('start');
//$end=$this->_request->getParam('end');
$sql="select id,title,uuid,substring(description for 400),filesize,fileformat from normalmetadata where east<? and west>? and north<? and south>?";
$sql="select id,title,uuid,substring(description for 400) as description,filesize,fileformat from normalmetadata where east<? and west>? and north<? and south>?";
if (!empty($key)) {
$sql.= " and (title ilike ? or description ilike ?)";
$sql.= " order by title";