別のselectを使用してクエリを実行しようとしています。
私は次のようなことをしたいと思います:
select?q=*:* AND id_user=5&fl=id_other
select?q=test AND -id(the result of the other select)&fl=id
それで:
select?q=test AND -id(select?q=* AND id_user=5&fl=id_other)&fl=id
出来ますか?または、2つの別々の選択を行う必要がありますか?
$ids = select?q=*:* AND id_user=5&fl=id_other
$result = select?q=test AND -id(implode(' AND ', $ids))&fl=id
ありがとう!