I want to select Users who own cats OR a fish as pet. there are users in my table who own both but right now I need only one or the other.
+----+------+------+
| id | cats | Fish |
+----+------+------+
| 1 | 0 | 1 |
| 2 | 1 | 0 |
| 3 | 1 | 1 |
| 4 | 0 | 1 |
| 5 | 1 | 0 |
Edit: This is needed in PSQL.