* [ ] 功能
* 用于合并两个或多个 SELECT 语句的结果集
* 支持多次连贯调用
* 参数
| 参数名 | 参数类型 | 参数说明 | 默认值 |
| :---: | :---: | :---: | :---: |
| $data | array | select语句集合,当数组的 key 不为数字的时候,会命名该组合查询的别名 | 必传 |
| $type | bool | —— | 默认 false |
* 场景:user 数据库的 user_account_1 表只有 2 条数据,user_account_2 表有数据 1 条:
user_account_1 表
| uid | username |
| :---: | :---: |
| 1 | 张三 |
| 2 | 李四 |
user_account_2 表
| uid | username |
| :---: | :---: |
| 3 | 隔壁老王 |
* 用法:
~~~
// 获取查询表的 sql 语句
$table_select_sql = [];
$table_select_sql[] = mysql\User::tabname('account_1', '*');
$table_select_sql[] = mysql\User::tabname('account_2', '*');
// 联合查询别名命名为 union_account
$data = mysql\User::union( ['union_account' => $table_select_sql], true )->select();
~~~
执行的 sql 语句:
~~~
select * from (select * from user.user_account_1 union select * from user.user_account_2) as union_account
~~~
查询结果:
~~~
array(
array(
'uid' => 1,
'username' => '张三',
),
array(
'uid' => 2,
'username' => '李四',
),
array(
'uid' => 3,
'username' => '隔壁老王',
),
);
~~~
- 开始使用
- 配置文件
- 路由模式
- 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