I am trying to figure out how to do nested OR/AND where queries like what you would do in MySQL
Take for example
SELECT
first_name,
id
FROM
table
WHERE
(
province = "nb" OR
province = "on"
) AND (
city = "toronto" AND
first_name = "steven"
)