我正在尝试使用Zend DB select进行此查询,但我无法做到这一点
这是SQL查询
select shopping_id,shopping_details,"friend" as type from shopping
请注意,我如何指定“朋友”作为类型,而朋友不是购物表中的列.
现在我在Zend如何做到这一点.我试过这个,但是给我一个错误,说“sh.friend列不存在”
$select->from(array('sh'=>'shopping'),array('shopping_id','shopping_details','"friend" as type');
任何帮助将不胜感激
谢谢
尝试使用Zend_Db_Expr,或许像:
原文链接:https://www.f2er.com/php/131789.html$select->from(array('sh'=>'shopping'),new Zend_Db_Expr('"friend" as type'));