💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 5.9 in in表示包含的意思,完全可以采用or来表示,采用in会更简洁一些 l 查询出job为manager或者job为salesman的员工 ``` select * from emp where job in ('manager','salesman'); ``` ![](https://img.kancloud.cn/ae/b0/aeb0efbd38ad4c4f247ba4061ad7788f_638x214.png) l 查询出薪水包含1600和薪水包含3000的员工 ``` select * from emp where sal in(1600, 3000); ``` ![](https://img.kancloud.cn/8f/0b/8f0bd7ef4f580fb89bd180603f3550d8_642x152.png)