Home  >  Article  >  Backend Development  >  yii 查询问题

yii 查询问题

WBOY
WBOYOriginal
2016-06-23 13:01:29722browse

  $connection = Yii::app()->db;        $table = $connection->tablePrefix.'insurance';        $sql = "select insurance_id, insurance_urlname from $table where insurance_display='Y' and insurance_status='A'";        $command = $connection->createCommand($sql);        $list = $command->execute();


$list  返回的是查询出来的条数

如何返回查询出来的结果集?


回复讨论(解决方案)

execute (执行)
只用于无返回结果的场合

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn