adplus-dvertising
frame-decoration

Question



Some of these insert statements will produce an error. Identify the statement.
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);

a.

Insert into employee values (1005,Rach,0);

b.

Insert into employee values (1002,Joey,335);

c.

Insert into employee values (1007,Ross, );

d.

None of the mentioned

Answer: (c).Insert into employee values (1007,Ross, );

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Some of these insert statements will produce an error. Identify the statement.

Similar Questions

Discover Related MCQs

Q. You attempt to query the database with this command:

SELECT nvl (100 / quantity, NONE)
FROM inventory;

Why does this statement cause an error when QUANTITY values are null?

Q. The result of _____unknown is unknown.

Q. Aggregate functions are functions that take a ___________ as input and return a single value.

Q. A Boolean data type that can take values true, false, and________

Q. Which of the following should be used to find all the courses taught in the Fall 2009 semester but not in the Spring 2010 semester .

Q. The phrase “greater than at least one” is represented in SQL by _____

Q. Which of the following is used to find all courses taught in both the Fall 2009 semester and in the Spring 2010 semester .

Q. SQL applies predicates in the _______ clause after groups have been formed, so aggregate functions may be used.

Q. Aggregate functions can be used in the select list or the_______clause of a select statement or subquery. They cannot be used in a ______ clause.

Q. The ________ keyword is used to access attributes of preceding tables or subqueries in the from clause.

Q. Which of the following creates temporary relation for the query on which it is defined ?

Q. Subqueries cannot:

Q. Which of the following is not a aggregate function ?

Q. A Delete command operates on ______ relation.

Q. Delete from r where P;
The above command

Q. Which one of the following deletes all the entries but keeps the structure of the relation .

Q. Which of the following is used to insert a tuple from another relation.

Q. Which of the following deletes all tuples in the instructor relation for those instructors associated with a department located in the Watson building which is in department relation.

Q. UPDATE instructor
_____ salary= salary * 1.05;

Fill in with correct keyword to update the instructor relation.

Q. _________ are useful in SQL update statements,where they can be used in the set clause.