2
我有一個users
表和兩個數據透視表(user_locations
,user_roles
),它允許用戶關聯多個「位置」和「角色」。選擇屬於New York
(某個位置)的用戶的最佳方式是什麼?和Manager
(角色)?MySQL/Laravel/Eloquent:選擇存在於兩個表中的行
列在每個表中:
表users
=>id
,name
表user_locations
=>user_id
,location_id
表user_roles
=>user_id
,role_id
因此,例如,我想要獲取與location_i關聯的用戶列表d 100
和role_id 200
我希望我明確地解釋我的目標。先謝謝你!
該訣竅。非常感謝! –