Yii2 : How to write distinct SQL query?(Yii2:如何编写不同的 SQL 查询?)
本文介绍了Yii2:如何编写不同的 SQL 查询?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在 Yii 2 中实现以下 SQL 查询,但没有成功.
I want to implement following SQL queries in Yii 2 but with no success.
这应该给出唯一公司名称的总数:
This should give total number of unique company names:
SELECT count(DISTINCT(company_name)) FROM clients
这应该显示带有 client code
和 id(PK)
的 company_name
:
And this should display company_name
with client code
and id(PK)
:
SELECT (DISTINCT(company_name,client_code)) FROM clients
如何实现这一目标?
推荐答案
回答我自己的问题,我得到了以下可行的解决方案:
Answering my own question I got following working solutions:
获得唯一company_name
的计数:
Got the count for unique company_name
:
$my = (new yiidbQuery())
->select(['company_name',])
->from('create_client')
->distinct()
->count();
echo $my;
不同company_name
和client_code
的列表:
List of distinct company_name
and client_code
:
$query = new yiidbQuery();
$data = $query->select(['company_name','client_code'])
->from('create_client')
->distinct()
->all();
if ($data) {
foreach ($data as $row) {
echo 'company_name: ' . $row['company_name'] . ' client_code: ' . $row['client_code'] . '<br>';
}
}
这篇关于Yii2:如何编写不同的 SQL 查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Yii2:如何编写不同的 SQL 查询?


猜你喜欢
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 仓库 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01