0
0
Google Sheetsspreadsheet~5 mins

SELECT clause in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the SELECT clause do in the QUERY function in Google Sheets?
The SELECT clause chooses which columns or data you want to see from your data range. It works like picking specific columns from a table.
Click to reveal answer
beginner
How do you select only the first and third columns from a data range using the SELECT clause?
Use SELECT Col1, Col3 inside the QUERY function to show only the first and third columns.
Click to reveal answer
beginner
Can you use the SELECT clause to rename columns in the output?
No, the SELECT clause only chooses columns. To rename columns, you need to use other functions or manually change headers.
Click to reveal answer
beginner
What happens if you use SELECT * in the QUERY function?
Using SELECT * means you want to select all columns from the data range without filtering any out.
Click to reveal answer
beginner
How do you write a QUERY formula to select columns B and D from data in A1:E10?
Use =QUERY(A1:E10, "SELECT Col2, Col4"). This picks only columns B and D from the range.
Click to reveal answer
In the QUERY function, what does the SELECT clause specify?
AWhich columns to show
BWhich rows to delete
CHow to sort data
DHow to format cells
What does SELECT * do in a QUERY formula?
ASelects no columns
BSelects only numeric columns
CSelects only the first column
DSelects all columns
How do you select the second column only in a QUERY formula?
ASELECT B
BSELECT 2
CSELECT Col2
DSELECT Column2
Can the SELECT clause rename columns in the QUERY output?
AYes, always
BNo, it only selects columns
COnly for text columns
DOnly if you use AS keyword
Which of these is a correct SELECT clause to get columns 1 and 3?
ASELECT Col1, Col3
BSELECT 1, 3
CSELECT A, C
DSELECT Column1, Column3
Explain how the SELECT clause works in the QUERY function in Google Sheets.
Think about picking columns from a table.
You got /3 concepts.
    Describe how to write a QUERY formula to select specific columns from a data range.
    Remember the syntax inside QUERY.
    You got /3 concepts.