I have following table in my SQL database
user_
userId | userName
organization_
org_id | parent_org_id_ | name
role_
roleId | roleName
user_roles
userId | roleId
users_organization
userId | organizationId
...Now what i want is from org_Id= ? and role_name = ? I want to retrieve the name of the user from user_ table related to that organization with the specific role name.so can anyone please tell me.. how to do it?