我想寫僅返回他們做 用戶沒有作用,因爲1.嘗試其中的id不爲用戶
查詢表列角色ID存在檢索行,用戶ID , 用戶類型。用戶ID具有每個角色ID的條目。因此,例如:
roleid userid
1 323
3 323
4 323
6 323
7 323
10 323
3 324
4 324
6 324
7 324
10 324
每次我想這只是取出排在角色ID爲1,但我需要一個整體的用戶即323不顯示,因爲它有1
會很感激幫助有了這個。
感謝
編輯:
select * from usersroles where userid in (
select userid from uprofiles where networkid in
(select network_id from network where usertype in (469,467,466,468))) and roleid !=1;
我使用上述但這返回用戶無需角色ID 1,但仍返回與其他角色的用戶。我想查詢只返回用戶沒有1
你能告訴我們一些代碼,以便更好地理解你所需要的嗎? – lemunk