0

我想生成如下 SQL 查询:

select *
from ocs
where ocs.wfx_oc_no = 'OC11' and
ocs.id in (select id
          from buyers
          where buyers.buyer_code = 'B01')

有人可以帮助我如何使用 laravel 子查询来做到这一点吗?

4

1 回答 1

1

$data = OCS::where('wfc_oc_no','OC11')->where('id', Buyers::where('buyer_code','B01')->first())->get();

于 2020-08-20T08:45:33.700 回答