Complete the code to select all columns from the data range A1:C10 using QUERY.
=QUERY(A1:C10, [1])The query string "SELECT *" selects all columns from the range.
Complete the code to select rows where column B is greater than 50.
=QUERY(A1:C10, [1])The query "SELECT * WHERE B > 50" selects all columns but only rows where column B is greater than 50.
Fix the error in the QUERY formula to correctly select column A and column C.
=QUERY(A1:C10, [1])The correct syntax to select multiple columns is to separate them with a comma, like "SELECT A, C".
Fill both blanks to select column B and order the results by column B descending.
=QUERY(A1:C10, [1] & " ORDER BY B [2]")
The query selects column B with "SELECT B" and orders it descending with "DESC".
Fill all three blanks to select column A, column C, and filter rows where column C is less than 100.
=QUERY(A1:C10, "SELECT [1], [2] WHERE [3] < 100")
The query selects columns A and C, and filters rows where column C is less than 100.