zend-framework – Zend DB选择常量 – 表中不存在的列

前端之家收集整理的这篇文章主要介绍了zend-framework – Zend DB选择常量 – 表中不存在的列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用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,或许像:
$select->from(array('sh'=>'shopping'),new Zend_Db_Expr('"friend" as type'));
原文链接:https://www.f2er.com/php/131789.html

猜你在找的PHP相关文章