Complete the code to filter rows where the value in Col1 is greater than 10.
SELECT * WHERE Col1 [1] 10
The WHERE clause filters rows where Col1 is greater than 10, so the operator should be >.
Complete the code to filter rows where the value in Col2 is exactly 'Yes'.
SELECT * WHERE Col2 [1] 'Yes'
The WHERE clause checks if Col2 equals 'Yes', so the operator should be =.
Fix the error in the code to filter rows where Col3 is not equal to 5.
SELECT * WHERE Col3 [1] 5
The operator <> means 'not equal to' in Google Sheets queries.
Fill both blanks to filter rows where Col4 is less than 20 and Col5 equals 'Active'.
SELECT * WHERE Col4 [1] 20 AND Col5 [2] 'Active'
Col4 should be less than 20, so use '<'. Col5 should equal 'Active', so use '='.
Fill all three blanks to filter rows where Col6 is greater than 50, Col7 is not equal to 'No', and Col8 equals 100.
SELECT * WHERE Col6 [1] 50 AND Col7 [2] 'No' AND Col8 [3] 100
Col6 should be greater than 50, so use '>'. Col7 should not equal 'No', so use '<>'. Col8 should equal 100, so use '='.