企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
## 列子查询 #### 概念 标量子查询:子查询得到的结果是一列数据(一列多行). #### 语法 ~~~ 主查询 where 条件 in (列子查询); ~~~ 如: ~~~ select name from profile where class_id in (select id from class where class_name = '二班') ~~~