I have a SQL table that has "PlayerID" and "GameType" columns. Column "GameType" could be "Video Games" or "Virtual Reality". Some of the players played both of these games and I want to see who is playing both, video games and virtual reality.
I tried to complete this with WHERE and GROUPBY statement, but I keep getting the entire list and not just the players who played both. Does anyone know the best solution for this problem? Thank you!!