Right now I have the query
DELETE FROM connections
WHERE "user_b_id" IN
(SELECT "id"
FROM "users"
WHERE 'dharness.student@gmail.com'="email")
But what I really want is
WHERE "user_b_id" OR "user_a_id" IN ...
But I can't figure out how to make that work. Is there an operator for this?