企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
* 含义: 行子查询查出的结果通常是一行,类似这样: ``` select pinpai, chandi from product where price=11499; ``` 结果为: ![](https://img.kancloud.cn/a2/1b/a21bd0afa9114dfcee5de2f7fe1bcacf_219x82.jpg) * 使用: 行子查询的结果通常跟“行构造符”一起,在where条件子句中做为条件数据,类似这样: ``` where (字段1, 字段2 ) = (行子查询) ``` 或 ``` where row(字段1, 字段2 ) = (行子查询) //含义跟上一行是一样的,即row可以省略 ``` * 示例: 找出跟单价最高的商品同品牌同产地的所有商品。 ![](https://img.kancloud.cn/cd/31/cd3161119d145f6720285f67c0c7f908_681x240.jpg) ![](https://img.kancloud.cn/86/15/86157239f839d0fe0e0b128455b36086_872x128.jpg)