Ok, so I found a question in this post here:
I have a question that slightly elaborates on this:
+----+-------+-------+
| id | dataA | dataB |
+----+-------+-------+
| 1 | 75 | 100 |
| 2 | 256 | 75 |
| 3 | 75 | 150 |
| 4 | 256 | 100 |
+----+-------+-------+
So the question that was posted was: how to select ONLY the data in dataA with id=1
But my question is: How to select data (seeing id1) that has data A = 75 and data B = 150?
So not getting the row by id, but something like this:
"SELECT * FROM Table WHERE dataA = '75' & WHERE dataB = '150';"
I hope I am on the right track here:-)
–Jwk82
“SELECT * FROM Table WHERE dataA = ’75’ AND dataB = ‘150’;”
unless im reading this request incorrectly this is what you want.