Q
在where
子句中使用嵌套查询结果的方法是什么?
我正在寻找类似于SQL
声明的内容。
select from food where type_id in (
select type_id from types where type_name = "fruit"
)
答案 0 :(得分:7)
select from food where type_id in (exec type_id from types where type_name like "fruit")
除了传递给谓词中的内容之外,您的查询几乎是正确的,并使用like函数进行字符串相等。当它只接受列表时,您正在传递一个表。要将查询作为列表发送,我使用 exec 来完成工作。
答案 1 :(得分:6)
虽然这是你问题的直接答案,但最好的方法可能就是外键:
q)types:([type_id:`apple`orange`cucumber]type_name:`fruit`fruit`vegetable)
q)food:([type_id:`types$`apple`orange`cucumber]price:3?2.)
q)meta food
c | t f a
-------| ---------
type_id| s types
price | f
q)select from food where type_id.type_name=`fruit
type_id| price
-------| ---------
apple | 0.4593231
orange | 1.383906
q)
答案 2 :(得分:3)
另一种方法:
select from food where type_id in (select type_id from types where type_name like "fruit")[`type_id]