如何将此查询表示为Zend_Db_Select?
select * from t where id = x'0cc175b9c0f1b6a831c399e269772661';
数据库是MySQL,使用PDO或mysqli适配器。
答案 0 :(得分:0)
你可能要使用Zend_Db_Expr:
$adapter->select()->from('t')->where('id = ?', new Zend_Db_Expr("x'0cc175b9c0f1b6a831c399e269772661'"));