Concept Flow - SELECT specific columns
Start Query
Parse SELECT clause
Identify columns to retrieve
Scan table rows
Extract specified columns from each row
Return result set with selected columns
End Query
The query starts by reading which columns to select, then scans the table rows, extracts only those columns, and returns them as the result.