Assuming the following table creation statement, what is the…

Assuming the following table creation statement, what is the result of running the INSERT statement? CREATE TABLE EXAMPLE (       zeta INT PRIMARY KEY       , eta VARCHAR(50) NOT NULL       , theta CHAR(12) NULL       , iota DATE NOT NULL ); INSERT INTO example (zeta, eta, theta, iota) VALUES (1, ‘x’, ‘y’, ‘1970-01-01’);

Assuming that all of the table and column names are correct,…

Assuming that all of the table and column names are correct, what is the result of the following INSERT statement? INSERT INTO InvoiceCopy     (VendorID, InvoiceNumber, InvoiceTotal, PaymentTotal, CreditTotal,     TermsID, InvoiceDate, InvoiceDueDate) VALUES(97, ‘456789’, 8344.50, 0, 0, 1, ‘2006-08-01’)