Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

how to retrieve only duplicate values in a table

9 Answers  


Does inner join return duplicate rows?

0 Answers  


how can we write a column values horizontal by using sql stmt; ex: select name from table_name;(actual output) a b c d require output is a b c d

5 Answers   Honeywell, Interact,


Is join an inner join?

0 Answers  


What are the return values of functions SQLCODE and SQLERRM ?

2 Answers   PreVator,


In a package if we have 10 procedures or functions,How to know which will execute first?

1 Answers   Sollet Soft,


Is sql port 1433 encrypted?

0 Answers  


What are the types of queries in sql?

0 Answers  


What are the possible values that can be stored in a boolean data field?

0 Answers  


Which one of the following join types will always create a Cartesian Product? 1. CROSS JOIN 2. LEFT OUTER JOIN 3. RIGHT OUTER JOIN 4. FULL OUTER JOIN 5. INNER JOIN

2 Answers  


can a stored procedure call itself or recursive stored procedure? : Sql dba

0 Answers  


how to drop an existing view in mysql? : Sql dba

0 Answers  


Categories