I am sure this could be very silly question, but I was not able to find answer from the internet.
I am trying to select rows with this conditon.
Select all rows if Side has both 'Right' and 'Left'.
In this case, it will select both row of Id 3 and 4 (yellow highlighted ones).
I know bottom query is not going to work.
select * from "Table" where ("Side" = 'Right') or ("Side" = 'Left')
How do I go about doing this?
