Suppose I have a table called "approvals".
mysql> desc approval;
+-------------+------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------+------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| user_id | int(11) | NO | | NULL | |
| to_user_id | int(11) | NO | | NULL | |
+-------------+------------+------+-----+---------+----------------+
Let's say Jessica approves Matt. Jessica would be the user_id, and Matt would be the to_user_id.
How do I run this query?
SELECT * WHERE to_user_id = matt AND matt also approved that person ?
(in other words, if Jessica approves Matt, but Matt doesn't approve Jessica, then the query wouldn't show up.)