how to run a mysql query in yii(如何在 yii 中运行 mysql 查询)
问题描述
我想通过 mysql 查询从表中获取列中的最高 5 个值,所以查询是:
I want to make mysql query to get the highest 5 values in a column from a table, so the query is :
'SELECT * FROM files ORDER BY `uploadDate` DESC LIMIT 5'
如何运行此查询并将其值保存在变量中?
how to run this query and save its value in a variable?
如果可能的话,我更喜欢使用 findAll() 方法和这些选项.
I prefer to use findAll() method with these options if it is possible.
推荐答案
有几种方法可以实现这一点,但如果您更喜欢查询构建器的方式
There are several ways to achieve this, but if you prefer the query builder way
$results = Yii::app()->db->createCommand()->
select('id, filename, uploadDate')->
from('files')->
order('uploadDate DESC')->
limit(5)->
queryAll();
var_dump($results);
阅读本文档了解更多详情:http://www.yiiframework.com/doc/guide/1.1/en/database.query-builder
Read this documentation for more detail : http://www.yiiframework.com/doc/guide/1.1/en/database.query-builder
这篇关于如何在 yii 中运行 mysql 查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 yii 中运行 mysql 查询


- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01