Hi,
Yes you can use multiple where condition in single query.
SQL always allows us to combine two or more conditions by using the AND and OR or NOT operators. Any number of simple conditions can be present in a single SQL statement, to allow us to create complex WHERE clauses that allow us to control which rows are included in our query results.
following is syntax to execute an SQL SELECT query with multiple conditions in the WHERE clause:
SELECT column_list
FROM table_name
WHERE column_name condition {[AND|OR} column_name condition}
So your query is correct