Alright, so I have a table named Users that contains the following columns: Username,Password,UserType(determine whether it is a regular user or an admin).
Basically, I’m trying to simulate creating a kind of project with other users.
Therefore, I need to create a table named Groups who should be based on the Users table.
It should have the following data:
Admin,Users
The admin who created the project and the users who should be able to join the project.
How can I do that? Assuming that the column Users in the Groups table may have more than 1 user.
Table Users:
Table Projects [this table will store project information]
Table ProjectUsers