3 Essential MySQL Interview Questions
Consider the following table definition in a MySQL database: CREATE TABLE example ( id INT NOT NULL, text1 VARCHAR(32) NOT NULL, text2 VARCHAR(32) NOT NULL DEFAULT ‘foo’ ); What will be the result of the two INSERT statements below if…