SELECT can compute a derived numeric column from existing columns.
highlighted = computed this step
Input table
Start with invoice lines that have quantities and unit prices.
Invoice lines
Select query
Compute a line total by multiplying quantity by unit price.
SELECT line_id, qty times unit_price AS line_total
Output table
The derived column is recomputed from the input values.
computed line totals