adplus-dvertising
frame-decoration

Question

Which of the following statements contains an error?

a.

Select * from emp where empid = 10003;

b.

Select empid from emp where empid = 10006;

c.

Select empid from emp;

d.

Select empid where empid = 1009 and lastname = ‘GELLER’;

Answer: (d).Select empid where empid = 1009 and lastname = ‘GELLER’;

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following statements contains an error?

Similar Questions

Discover Related MCQs

Q. Insert into employee _____ (1002,Joey,2000);
In the given query which of the keyword has to be inserted ?

Q. SELECT * FROM employee WHERE dept_name="Comp Sci";

In the SQL given above there is an error . Identify the error .

Q. ’_ _ _ ’ matches any string of ______ three characters. ’_ _ _ %’ matches any string of at ______ three characters.

Q. In SQL the spaces at the end of the string are removed by _______ function .

Q. _____ operator is used for appending two strings.

Q. The union operation is represented by

Q. The intersection operator is used to get the _____ tuples.

Q. The union operation automatically __________, unlike the select clause.

Q. If we want to retain all duplicates, we must write ________ in place of union.

Q. For like predicate which of the following is true.

i) % matches zero OF more characters.
ii) _ matches exactly one CHARACTER.

Q. The number of attributes in relation is called as its

Q. _____ clause is an additional filter that is applied to the result.

Q. _________ joins are SQL server default

Q. The _____________ is essentially used to search for patterns in target string.

Q. A _____ indicates an absent value that may exist but be unknown or that may not exist at all.

Q. If the attribute phone number is included in the relation all the values need not be entered into the phone number column . This type of entry is given as

Q. The predicate in a where clause can involve Boolean operations such as and.The result of true and unknown is_______ false and unknown is _____ while unknown and unknown is _____

Q. In a employee table to include the attributes whose value always have some value which of the following constraint must be used ?

Q. Using the ______ clause retains only one copy of such identical tuples.

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?