In the view that follows, which field can't be updated
CREATE VIEW example_2
AS
SELECT invoice_number, invoice_date, invoice_total, payment_total, invoice_total - payment_total - credit_total AS balance_due, SYSDATE() - invoice_date AS days_old
FROM invoices
A. invoice_total
B. balance_due
C. invoice_date
D. all of the above