Which of the following statements contains an error?
Select empid where empid = 1009 and lastname = ‘GELLER’;
Explanation: This query do not have from clause which specifies the relation from which the values has to be selected.
Select * from emp where empid = 10003;
Select empid from emp where empid = 10006;
Select empid from emp;