I have a table with the following columns:
User_id, Key, Value
In this table are records such as:
1, "first name", "Bob"
2, "first name", "Mike"
1, "last name", "Jones"
2, "last name", "Carter"
I want to get the user_id for a specific first and last name pair. How can I get a query to do this? For example, I want to get 1 if I query for Bob Jones