我有两张table。我想得到所有用户和他们的详细资料谁是活跃/禁止。
什么是拉雷维尔雄辩相当于这个问题。
'select * from client_details where user_id IN (select user_id from client_logins where is_active='.$active.')'
表:client\u logins model clientlogin
+---------+---------+--------------+-------------+-----------+
| id | user_id | username | password | is_active |
+---------+---------+--------------+-------------+-----------+
表:客户端详细信息模型clientdetail
+---------+------+-------+------------------+
| user_id | name | email | mobile | address|
+---------+------+-------+------------------+
1条答案
按热度按时间qni6mghb1#
使用查询生成器,您可以将其编写为
或者如果你已经定义了
has
的关系ClientDetails
您可以使用的模型whereHas
滤波器