0
我怎樣寫這Laravel查詢生成器:Laravel查詢生成器子查詢單獨的表
- 我有了一個客戶與
'phone'
列用戶表。 - 一個客戶屬於用戶上
'user_id'
與'mobile
列」表。
我想找一個電話號碼是'手機'或'手機'的任何客戶ID。事情是這樣的:
select id
from customers
where mobile = '5555555555' or
user_id = (select id
from users
where phone = '5555555555')