Column Checklist
Use the steps as a column checklist:
- In the input table, mark the columns named by the query.
- Carry those columns across in the same row order.
- Leave the unselected columns behind.
This is a shape change, not a row test. Every order row still appears; only the visible fields are narrower.
Projection keeps requested columns and drops the rest.
highlighted = computed this step
Input table
Start with Orders, which has identifiers, categories, and amounts.
Orders
Select query
Select only the identifier and amount columns.
SELECT order_id, amount
Output table
The category column is gone; row count is unchanged.
projected columns