* [ ] 功能
* 组装查询条件
* 场景:user 数据库的 user_account 表只有 3 条数据,数据为:
user_account 表
| uid | username |
| :---: | :---: |
| 1 | 张三 |
| 2 | 李四 |
| 3 | 隔壁老王 |
* [ ] where方法的参数支持字符串和数组
* [ ] 字符串条件
* 查询用户名包含老王,并且用户ID大于1的所有用户记录
~~~
$where = "username like `'%老王%' and uid > 1";
$data = mysql\User::table('account')->where( $where )->select();
~~~
* [ ] 数组条件
* 查询用户名包含老王,并且用户ID大于1的所有用户记录
~~~
$where = array(
'uid[>]' => 1,
'username[like]' => '老王',
);
$data = mysql\User::table('account')->where( $where )->select();
~~~
查询结果:
~~~
array(
array(
'uid' => 3,
'username' => '隔壁老王',
),
);
~~~
* [ ] 复杂组合条件
* 查询用户名包含老王且用户ID大于1,或者用户ID小于等于3的所有用户记录
~~~
$where = array(
'or' => array(
'uid[<=]' => 3,
'and' => array(
'uid[>]' => 1,
'username[like]' => '老王',
),
),
);
$data = mysql\User::table('account')->where($where)->select();
~~~
* 查询用户名包含老王且用户ID大于1,或者用户ID小于等于3,或者用户ID大于1且用户名是李四的所有用户记录
~~~
$where = array(
'or' => array(
'uid[<=]' => 3,
'and' => array(
'uid[>]' => 1,
'username[like]' => '老王',
),
),
'or1' => array(
'uid[>]' => 1,
'usernmae' => '李四',
),
);
$data = mysql\User::table('account')->where($where)->select();
~~~
* 查询表达式含义
| 表达式符号 | 表达式含义 |
| :---: | :---: |
| [not] in | 范围查询 |
| [not] like | 模糊查询 |
| [not] bet | 区间查询 |
| [not] es | [NOT] EXISTS条件 |
| .= | 字段匹配 |
* [ ] 注意事项
* 不支持多次连贯调用where,如果多次连贯调用,以最后一次调用为准
* 多个 and,然后又是同一级,可以在以下字符串中选择
~~~
and、and1、and2、and3、and4、and5、and6、and7、and8、and9、&&
~~~
* 多个 or,然后又是同一级,可以在以下字符串中选择
~~~
or、or1、or2、or3、or4、or5、or6、or7、or8、or9、||
~~~
- 开始使用
- 配置文件
- 路由模式
- AutoLoad类
- 启动文件
- __construct
- SetRouting
- SetAlias
- SetStop
- SetError
- Access
- SetWorker
- SetClassFile
- SetClassDir
- Run
- OpenLoad
- LinuxStartAll
- Session类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Cookie类
- 使用说明
- set
- get
- delete
- pull
- has
- TempLets类
- 模板语法
- 模板标签
- html
- show
- assign
- obtain
- Request类
- get
- post
- host
- referer
- getip
- localip
- header
- body
- file
- scheme
- protocolversion
- uri
- path
- querystring
- method
- Response
- SendFile
- FileStream
- SendData
- SetStatus
- SetHead
- SetMime
- WebSend
- redirect
- dumpJson
- dump
- come
- ps
- Frame类
- GetWeb
- ViewFile
- RoutingData
- SetClassFile
- SetClassDir
- GetMime
- FileMime
- LoadDir
- StartDir
- IsJson
- ArrJson
- JsonFormat
- ObStart
- GetConfig
- ConfigDir
- TempDir
- GetRunData
- GetStatic
- IsDebug
- SetDebug
- GetDebugInfo
- GlobalVariables类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Mysql类
- 新版本
- 第三方
- Thinkorm
- Medoo
- 旧版本
- Mysql 配置格式
- 项目中操作数据库
- 项目场景
- 项目数据库配置
- 项目数据库中间类
- 项目中操作数据表
- 连贯操作
- where
- table
- data
- order
- field
- limit
- page
- group
- having
- join
- tabname
- union
- sql
- link
- link_base
- lock
- CURD 操作
- 写入数据
- 数据删除
- 数据查询
- 数据更新
- 数据统计操作
- count
- sum
- max
- min
- avg
- 操作DEMO
- CurdTrait.php
- 项目Model层操作表.md
- Curl类
- Method类
- SslAes类
- layui_zqadmin