`view`方法可以实现不依赖数据库视图的多表查询,并不需要数据库支持视图,是`JOIN`方法的推荐替代方法,例如:
```
Db::view('User', 'id,name')
->view('Profile', 'truename,phone,email', 'Profile.user_id=User.id')
->view('Score', 'score', 'Score.user_id=Profile.id')
->where('score', '>', 80)
->select();
```
生成的SQL语句类似于:
```
SELECT User.id,User.name,Profile.truename,Profile.phone,Profile.email,Score.score FROM think_user User INNER JOIN think_profile Profile ON Profile.user_id=User.id INNER JOIN think_socre Score ON Score.user_id=Profile.id WHERE Score.score > 80
```
>[info] 注意,视图查询无需调用`table`和`join`方法,并且在调用`where`和`order`方法的时候只需要使用字段名而不需要加表名。
默认使用`INNER join`查询,如果需要更改,可以使用:
```
Db::view('User', 'id,name')
->view('Profile', 'truename,phone,email', 'Profile.user_id=User.id', 'LEFT')
->view('Score', 'score', 'Score.user_id=Profile.id', 'RIGHT')
->where('score', '>', 80)
->select();
```
生成的SQL语句类似于:
```
SELECT User.id,User.name,Profile.truename,Profile.phone,Profile.email,Score.score FROM think_user User LEFT JOIN think_profile Profile ON Profile.user_id=User.id RIGHT JOIN think_socre Score ON Score.user_id=Profile.id WHERE Score.score > 80
```
可以使用别名:
```
Db::view('User', ['id' => 'uid', 'name' => 'account'])
->view('Profile', 'truename,phone,email', 'Profile.user_id=User.id')
->view('Score', 'score', 'Score.user_id=Profile.id')
->where('score', '>', 80)
->select();
```
生成的SQL语句变成:
```
SELECT User.id AS uid,User.name AS account,Profile.truename,Profile.phone,Profile.email,Score.score FROM think_user User INNER JOIN think_profile Profile ON Profile.user_id=User.id INNER JOIN think_socre Score ON Score.user_id=Profile.id WHERE Score.score > 80
```
可以使用数组的方式定义表名以及别名,例如:
```
Db::view(['think_user' => 'member'], ['id' => 'uid', 'name' => 'account'])
->view('Profile', 'truename,phone,email', 'Profile.user_id=member.id')
->view('Score', 'score', 'Score.user_id=Profile.id')
->where('score', '>', 80)
->select();
```
生成的SQL语句变成:
```
SELECT member.id AS uid,member.name AS account,Profile.truename,Profile.phone,Profile.email,Score.score FROM think_user member INNER JOIN think_profile Profile ON Profile.user_id=member.id INNER JOIN think_socre Score ON Score.user_id=Profile.id WHERE Score.score > 80
```
- 简介
- 数据库配置
- 分布式数据库
- 查询构造器
- 查询数据
- 新增数据
- 更新数据
- 删除数据
- 链式操作
- Where
- Table
- Alias
- Field
- Strict
- Limit
- Page
- Order
- Group
- Having
- Join
- Union
- Distinct
- Lock
- Cache
- Comment
- FetchSql
- Force
- Partition
- Replace
- FailException
- Extra
- Duplicate
- Sequence
- Procedure
- View
- 聚合查询
- 分页查询
- 时间查询
- 高级查询
- 子查询
- 原生查询
- 事务操作
- 存储过程
- 查询事件
- JSON字段
- 模型
- 定义
- 新增
- 更新
- 删除
- 查询
- 查询范围
- 只读字段
- JSON字段
- 自动时间写入
- 获取器
- 修改器
- 搜索器
- 类型转换
- 模型输出
- 模型事件
- 虚拟模型
- 关联
- 一对一关联
- 一对多关联
- 远程一对多
- 远程一对一
- 多对多关联
- 多态一对多
- 多态一对一
- 关联预载入
- 关联统计
- 关联输出
- SQL监听
- 缓存机制
- 字段缓存
- 查询缓存
- 扩展
- 自定义查询类
- 自定义数据库驱动