what is the output of this query selet * from employee
where 1=2 ??

Answers were Sorted based on User's Feedback



what is the output of this query selet * from employee where 1=2 ??..

Answer / priyanka agarwal

It will return 0 rows as 1 will never be ewual to 2

Is This Answer Correct ?    50 Yes 2 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / narendradivvela

no rows selected

Is This Answer Correct ?    33 Yes 0 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / selvaraj v, anna university

In Oracle 10g :
---------------

no rows selected.


E.g:
----

SQL> SELECT * FROM job;

EMPNO JOBTITLE
--------- --------------------
1 Tester
2 Accountant
3 Developer
4 COder
5 Director
6 Mediator
7 Proffessor
8 Programmer
9 Developer

9 rows selected.

SQL> SELECT * FROM job WHERE 1=2;

no rows selected.

Is This Answer Correct ?    19 Yes 0 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / rohan mhatre

It will return 0 rows....since condition in where clause
will fail as 1 is not equal to 2

Is This Answer Correct ?    18 Yes 1 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / julien

indeed it will return o rows, but the goal behind is to
create a new table t2 as select * from t1 where 1=2, where
just the structure of table t1 will be copied without
copying data from table t1.

Is This Answer Correct ?    14 Yes 0 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / ashokkumar

create table temp_employee as select * from employee where 1=2;
this is only for a correct answer..
it is create from a temporary table in same table name.

Is This Answer Correct ?    0 Yes 0 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / prabu t

Error report:
Unknown Command

Is This Answer Correct ?    0 Yes 0 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / rakesh anand

In Oracle Database 10g Express Edition
it shows "no data found"

Is This Answer Correct ?    0 Yes 0 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / chinnu

It will be displayed as NULL

Is This Answer Correct ?    0 Yes 6 No

what is the output of this query selet * from employee where 1=2 ??..

Answer / bhagyashree

it will return those query whose value will be 2 in first
column

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More SQL PLSQL Interview Questions

What is the most common sql injection tool?

0 Answers  


What is bulk collections?

2 Answers  


Write a sql query to get the third highest salary of an employee from employee_table?

0 Answers  


How do you use join?

0 Answers  


what is bdb (berkeleydb)? : Sql dba

0 Answers  






check whether all the emp numbers are indeed unique.

6 Answers  


What is sql*plus?

0 Answers  


What is cursor in pl sql with examples?

0 Answers  


What are the benefits of stored procedures?

0 Answers  


What are the two parts of a procedure ?

6 Answers   Hi Caliber IT,


hi this is nakka i have been looking for 1+ exp in oracle sql,plsql developer positions also have knoledge on d2k i am not getting proper walkins how to know it? where can i find it?

5 Answers  


how to use regular expression in pattern match conditions? : Sql dba

0 Answers  


Categories