以下のようなSQLクエリを生成したい:
select *
from ocs
where ocs.wfx_oc_no = 'OC11' and
ocs.id in (select id
from buyers
where buyers.buyer_code = 'B01')
laravelサブクエリでこれを行う方法について誰かが私を助けることができますか?
以下のようなSQLクエリを生成したい:
select *
from ocs
where ocs.wfx_oc_no = 'OC11' and
ocs.id in (select id
from buyers
where buyers.buyer_code = 'B01')
laravelサブクエリでこれを行う方法について誰かが私を助けることができますか?