yii2数据条件查询-where专题

条件查询

$customers = Customer::find()->where($cond)->all();

$cond就是我们所谓的条件,条件的写法也根据查询数据的不同存在差异,那么如何用yii2的方式来写查询条件呢?

[[简单条件]]

// SQL: (type = 1) AND (status = 2).
$cond = [‘type‘ => 1, ‘status‘ => 2] 

// SQL:(id IN (1, 2, 3)) AND (status = 2)
$cond = [‘id‘ => [1, 2, 3], ‘status‘ => 2] 

//SQL:status IS NULL
$cond = [‘status‘ => null]

[[and]]:将不同的条件组合在一起,用法举例:

//SQL:`id=1 AND id=2`
$cond = [‘and‘, ‘id=1‘, ‘id=2‘]

//SQL:`type=1 AND (id=1 OR id=2)`
$cond = [‘and‘, ‘type=1‘, [‘or‘, ‘id=1‘, ‘id=2‘]]

//SQL:`type=1 AND (id=1 OR id=2)` //此写法‘=‘可以换成其他操作符,例:in like != >=等
$cond = [
    ‘and‘,
    [‘=‘, ‘type‘, 1],
    [
        ‘or‘,
        [‘=‘, ‘id‘, ‘1‘],
        [‘=‘, ‘id‘, ‘2‘],
    ]
]

[[or]]:

//SQL:`(type IN (7, 8, 9) OR (id IN (1, 2, 3)))`
$cond = [‘or‘, [‘type‘ => [7, 8, 9]], [‘id‘ => [1, 2, 3]]

[[not]]:

//SQL:`NOT (attribute IS NULL)`
$cond = [‘not‘, [‘attribute‘ => null]]

[[between]]: not between 用法相同

//SQL:`id BETWEEN 1 AND 10`
$cond = [‘between‘, ‘id‘, 1, 10]

[[in]]: not in 用法类似

//SQL:`id IN (1, 2, 3)`
$cond = [‘in‘, ‘id‘, [1, 2, 3]] or $cond = [‘id‘=>[1, 2, 3]]

//IN条件也适用于多字段
$cond = [‘in‘, [‘id‘, ‘name‘], [[‘id‘ => 1, ‘name‘ => ‘foo‘], [‘id‘ => 2, ‘name‘ => ‘bar‘]]]

//也适用于内嵌sql语句
$cond = [‘in‘, ‘user_id‘, (new Query())->select(‘id‘)->from(‘users‘)->where([‘active‘ => 1])]

[[like]]:

//SQL:`name LIKE ‘%tester%‘`
$cond = [‘like‘, ‘name‘, ‘tester‘]

//SQL:`name LIKE ‘%test%‘ AND name LIKE ‘%sample%‘`
$cond = [‘like‘, ‘name‘, [‘test‘, ‘sample‘]]

//SQL:`name LIKE ‘%tester‘`
$cond = [‘like‘, ‘name‘, ‘%tester‘, false]

[[exists]]: not exists用法类似

//SQL:EXISTS (SELECT "id" FROM "users" WHERE "active"=1)
$cond = [‘exists‘, (new Query())->select(‘id‘)->from(‘users‘)->where([‘active‘ => 1])]

此外,您可以指定任意运算符如下

//SQL:`id >= 10`
$cond = [‘>=‘, ‘id‘, 10]

//SQL:`id != 10`
$cond = [‘!=‘, ‘id‘, 10]
 可进行精准搜索和模糊搜索
$prCon=[‘and‘, ‘user_id = 0‘,  "salesman = $condition[sid]"];

if (isset($condition[‘mobile‘]) && $condition[‘mobile‘]) {    array_push($prCon, [‘like‘,‘mobile‘,$condition[‘mobile‘]]);}
时间: 2024-12-13 20:06:13

yii2数据条件查询-where专题的相关文章

asp.net(c#)中如何在前端用js写条件查询,且不用调用存储过程

前端页面(源): <dx:ASPxButton ID="ASPxButton_Select" runat="server" Text="查询" AutoPostBack="false"> <ClientSideEvents Click="bt_select" /> </dx:ASPxButton> js部分: function bt_select() { //alert(

C# 将Access中时间段条件查询的数据添加到ListView中

C# 将Access中时间段条件查询的数据添加到ListView中 一.让ListView控件显示表头的方法 在窗体中添加ListView 空间,其属性中设置:View属性设置为:Detail,Columns集合中添加表头中的文字. 二.利用代码给ListView添加Item. 首先,ListView的Item属性包括Items和SubItems.必须先实例化一个ListIteView对象.具体如下: ListViewItem listViewItem=new ListViewItem(); l

Atitit.列表页面and条件查询的实现最佳实践(1)------设置查询条件and提交查询and返回json数据

1. 1.?配置条件字段@Conditional 1 1 2. 2.?配置条件字段显示类型为[email protected](displayType?=?displayType.rang,?rangStart?=?rang.start,?rangEnd?=?rang.end,op=op.range) 1 3. #----show  condition  page  list 1 4. 提交条件查询表单by dwr 1 5. @filter  ::   set filter condition 

ecshop后台根据条件查询后不填充table 返回的json数据,content为空?

做ecshop后台开发的时,根据条件查询后,利用ajax返回的content json数据内容为空,没有填充table 效果 预期效果 问题: make_json_result($smarty -> fetch('packages_list_info.htm'), '', array('filter' => $result['filter'], 'page_count' => $result['page_count'])); 问题出在 packages_list_info.htm页面里

C# winform窗体设计-通过条件查询数据

在winform 数据库设计中,有时候需要通过条件查询对应的数据,并且将数据显示在文本框(or 富文本框)中,下面,小编将讲述通过一个条件: 首先,我们需要对数据库建立连接,并且执行数据库命令,在此之前,我们先创建一个winform窗体,窗体设计大概如下所示:    在创建窗体后,我们应该进行书写代码阶段: 1 string s = "server=SAM_PC;database=MInformationDB;Integrated Security=true"; 2 SqlConnec

Java操作Hbase进行建表、删表以及对数据进行增删改查,条件查询

1.搭建环境 新建JAVA项目,添加的包有: 有关Hadoop的hadoop-core-0.20.204.0.jar 有关Hbase的hbase-0.90.4.jar.hbase-0.90.4-tests.jar以及Hbase资源包中lib目录下的所有jar包 2.主要程序 Java代码 package com.wujintao.hbase.test; import java.io.IOException; import java.util.ArrayList; import java.util

hibernate关联数据作为查询条件

hibernate中,在前台当表关联的数据作为查询条件时,因为hibernate只接受能识别的属性(即在对应的hbm.xml文件中能找到的属性),如果没有,则在后台实现类中的hql中需要用别名进行查询: 前台页面: 后台的查询hql: if(gqm.getGtm() != null &&                 gqm.getGtm().getSm() != null &&                 gqm.getGtm().getSm().getUuid()

一个根据条件查询数据的存储过程

1 USE [MapCDE_1] 2 GO 3 /****** Object: StoredProcedure [dbo].[sp_getLocations] Script Date: 04/21/2014 11:27:20 ******/ 4 SET ANSI_NULLS ON 5 GO 6 SET QUOTED_IDENTIFIER ON 7 GO 8 9 10 11 -- ============================================= 12 -- Author:

MySQL 查询语句SELECT和数据条件过滤

MySQL 查询语句SELECT ,主要是用 * 表示任意字段,也可以写id,name,content 等,数据条件过滤主要是between,and,or ,WHERE,in,like,limit,not in等. 1,查询语句SELECT的用法 select * from biao 2,查询语句数据条件的用法where 条件的开始and 并联关系or 或者的关系between 两者之间like 模糊查询limit 限制查询的条数in 在什么里面not in 不在什么里面 文章来自(www.dc