MySQL クエリの結果を返します。しかし、彼は MySQL クエリを返しています。
public function getLatestId() {
$db = Zend_Db_Table::getDefaultAdapter();
$db->getConnection();
$result = $db->select()->from("raw_data", array(new Zend_Db_Expr("MAX(id) AS locationname")));
return $result;
}