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’);