CoalescePRQLSQLCoalesceWe can coalesce values with an ?? operator. Coalescing takes either the first value or, if that value is null, the second value. PRQLfrom ordersderive amount ?? 0SQLSELECT *, COALESCE(amount, 0)FROM orders