I'm trying to read tutorials and find question on syntax on sql subqueries for a specific purpose but I can't seem to find the right choice of words to describe my problem.
Table - Part Descriptions
+------------+------------+------------+
| ID | Part # | Type |
+------------+------------+------------+
| 1 | 123 | 1 |
| 2 | 456 | 2 |
| 3 | 123 | 3 |
| 4 | 789 | 4 |
| 5 | 123 | 4 |
| 6 | 789 | 2 |
| 7 | 123 | 2 |
+------------+------------+------------+
I basically need to find any part number that has the Type Value of both '2' and '4', not one or the other.
I feel like it should be incredibly simple, but I can't seem to get correct results