如何将新的Zend_Db_Expr放在哪里?

时间:2014-09-18 12:47:51

标签: zend-framework

我不知道如何将新的Zend_Db_Expr置于where where条件下。我的代码是

$select = $this->objDB->select()
    ->from(array('tra' => 'transactions'), array('id', 'amount'))
    ->where( new Zend_Db_Expr('CAST(amount AS FLOAT)') < 3);

我该怎么做?

1 个答案:

答案 0 :(得分:2)

您的案件不需要Zend_Db_Expr。

应该只是:

->where('CAST(amount AS FLOAT) < 3');