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 查询
基础教程推荐
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
