Oracle
1Z0-882 · Question #92
Consider the table t1 created with this statement: CREATE TABLE t1( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, Name CHAR (20) ENGINE=InnoDB; After inserting three rows, the table contains: These…
The correct answer is C. (201,Pluto). See the full explanation below for the reasoning.
Question
Consider the table t1 created with this statement:
CREATE TABLE t1( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, Name CHAR (20) ENGINE=InnoDB; After inserting three rows, the table contains:
These commands are executed:
DELETE FROM t1 WHERE id=200; INSERT INTO t1 (name) VALUES (`pluto'):
Which data set is inserted in the table?
Options
- A(200.pluto)
- B(101,Pluto)
- C(201,Pluto)
- D(300,Pluto)
How the community answered
(65 responses)- A14% (9)
- B6% (4)
- C77% (50)
- D3% (2)
Community Discussion
No community discussion yet for this question.