Computed Columns

Orders

    Total           AS Subtotal + GST   -- This is now a Computed Column

OrderDetails

    -- The Amount column is a CALCULATED (or "derived") column.
    -- It's value is the result of multiplying Quantity by SellingPrice.
    Amount          AS Quantity * SellingPrice  ,
Last Updated: 8/17/2019, 3:52:52 PM