IBM
C2090-558 · Question #93
Given the following table definition: CREATE TABLE t1(col1 BOOLEAN); Which of the following statements will fail to insert a row?
The correct answer is C. INSERT INTO t1 values (1). See the full explanation below for the reasoning.
Question
Given the following table definition:
CREATE TABLE t1(col1 BOOLEAN); Which of the following statements will fail to insert a row?
Options
- AINSERT INTO t1 values ('t');
- BINSERT INTO t1 values ('f');
- CINSERT INTO t1 values (1);
- DINSERT INTO t1 values (NULL);
How the community answered
(35 responses)- A6% (2)
- B14% (5)
- C77% (27)
- D3% (1)
Community Discussion
No community discussion yet for this question.