微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – zend不使用列,并选择一切

我有以下代码
$result = $handle->select()->from('store_details')
                               ->where('store_details.store_id=?',$id)
                               ->columns('store_details.store_name');
                               //->query(ZEND_DB::FETCH_OBJ);

但是,当我运行它时,选择整行,而不仅仅是我想要的列.
这是__toString的输出

SELECT `store_details`.*,`store_details`.`store_name` 
FROM `store_details` WHERE (store_details.store_id=8)

有帮助吗?

columns()方法用于向现有的from或join添加列.构建查询的正确方法是:
$result = $handle->select()->from('store_details','store_details.store_name')->where('store_details.store_id=?',$id);

您需要将所需的列指定为from()方法的第二个参数,如果它只是一个列,则指定为字符串,或者指定为多个列的数组.从Zend_Db_Select docs

In the second argument of the from()
method,you can specify the columns to
select from the respective table. If
you specify no columns,the default is
“*”,the sql wildcard for “all
columns”.

You can list the columns in a simple array of strings,or as an associative mapping of column alias to column name. If you only have one column to query,and you don’t need to specify a column alias,you can list it as a plain string instead of an array.

原文地址:https://www.jb51.cc/php/134676.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐