Complete the code to select all columns from the range A1:C10 using QUERY.
QUERY(A1:C10, [1])The query string "SELECT *" selects all columns from the data range.
Complete the code to select only column B from the range A1:C10 using QUERY.
QUERY(A1:C10, [1])The query string "SELECT B" selects only column B from the data range.
Fix the error in the QUERY formula to select column A where values are greater than 10.
QUERY(A1:B10, [1])The query string "SELECT A WHERE A > 10" correctly selects column A where its values are greater than 10.
Fill in the blank to select columns A and C where column C is less than 50.
QUERY(A1:C20, [1])The query string "SELECT A, C WHERE C < 50" selects columns A and C where values in column C are less than 50.
Fill in the blank to select column B where column A equals 'Apple' and sort by column B descending.
QUERY(A1:C30, [1])The query string "SELECT B WHERE A = 'Apple' ORDER BY B DESC" selects column B where column A is 'Apple' and sorts the results by column B in descending order.