我不知道如何将新的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);
我该怎么做?
答案 0 :(得分:2)
您的案件不需要Zend_Db_Expr。
应该只是:
->where('CAST(amount AS FLOAT) < 3');