Skip to content
Advertisement

I need to write a query to return user_type based on all types that user was associated to in a single row

I have table with a user column and user_type column. A user can be associated to multiple user_type’s.

There are a total of five different user_type’s in the column. I have a requirement to find each user who is associated with all the user_type’s.

For example:

Suppose this is the table (this is just a sample table). Here AAAA needs to be declared as UT_NEW1
BBBB as UT_NEW2
CCCC as UT_NEW3
DDDD again as UT_NEW1
and EEEE as UT_NEW4.

We cannot use count in this case as it cannot be determined that if a particular user has three user_type’s, and then they can be declared as a particular group.

I am trying to do:

If User = ‘Some user’ and his user_type = (‘user_type1’ and ‘user_type2’ and ‘user_type3’) then he/she can be declared as ‘type1’.

A user belongs to a group defined by particular user_types. Only if a user have those particular user_types and none other, can they be declared to belong to the group.

Advertisement

Answer

I added a user “PPPP” and created the table. I changed the column name to usr, since Oracle is a little picky about using keyword as columns:

Since this is a database, I decided to add a table holding the groups (you’ve also called them types):

I picked user “EEEE” and made a simple join:

User “EEEE” belongs to Group3 only. Not Group2, since “EEEE” has both user_type “Admin” and “Cashier”, and also not Group4, since Group4 also has the additional “Astronaut”.

First, I just made a simple group by:

Then I added the condition that the count has to be indentical to the count of the same group_no in the groups table, so if there are 3 rows with Group4 in the groups table, there also have to be 3 rows in the join. But since there are only 2 rows in the join, but 3 rows in the groups table for Group4, that row is now gone:

Then I added a similar condition for the users table. If there are 2 users in the users table, then the count in the join has to also be 2. Since there are 2 rows with “EEEE” in the users table, but only a count of 1 in the join, Group2 is now also gone:

So we end up with having ‘EEEE’ belong to group3 🙂 Note: I also removed selecting the actual count(g.usr_type), since it’s irrevant now.

Removing the query conditition for only “EEEE” gets the group for all users:

It’s also available at dbfiddle.uk, if you want to play with it.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement