我想生成如下 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 子查询来做到这一点吗?