Create table employee (id integer,name varchar(20),salary not null); Insert into employee values (1005,Rach,0); Insert into employee values (1007,Ross, ); Insert into employee values (1002,Joey,335); Some of these insert statements will produce an error. Identify the statement.

🎲 Try a Random Question  |  Total Questions in Quiz: 131  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Relational D.B.M.S. — practice the complete quiz, review flashcards, or try a random question.


Create table employee (id integer,name varchar(20),salary not null); Insert into employee values (1005,Rach,0); Insert into employee values (1007,Ross, ); Insert into employee values (1002,Joey,335); Some of these insert statements will produce an error. Identify the statement.