When we give SELECT * FROM EMP; How does oracle respond?

Answers were Sorted based on User's Feedback



When we give SELECT * FROM EMP; How does oracle respond?..

Answer / belal ansari

The sql engine select the records from the table EMS and it store in IMPLICIT CURSOR then display these recordes.

Is This Answer Correct ?    1 Yes 2 No

When we give SELECT * FROM EMP; How does oracle respond?..

Answer / sun

Oracle responds as

It retrieves all records from the EMP table.

Is This Answer Correct ?    1 Yes 2 No

When we give SELECT * FROM EMP; How does oracle respond?..

Answer / reddy

IT WILL GIVES THE ALL THE ATTRIBUTS IN EMP TABLE

Is This Answer Correct ?    5 Yes 8 No

When we give SELECT * FROM EMP; How does oracle respond?..

Answer / veni

WE give this query when, we need to view the entire record
of emp table. ( i.e) it will display all the rows and
columns of emp table. and the oracle respond the same as
per the query given.

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More SQL PLSQL Interview Questions

What is pl/sql and what is it used for?

4 Answers  


How bulk collect improves performance?

0 Answers  


How to add Foreign key in a table after the creation of the table?

5 Answers   Satyam,


What is the difference between left and left outer join?

0 Answers  


Hi Everyone, How to get fist and last record from a table in oracle? Thanks in advance

13 Answers   IBM,






Why do we need a foreign key?

0 Answers  


What is the difference between subquery and correlated query?

0 Answers  


if table named a is there and 4 records are there then how to swap (1 and 3) and (2 and 4) records at a time

1 Answers  


What is %type in sql?

0 Answers  


Define union, minus, union all, intersect ?

0 Answers  


can use the following like overloading concept in a single package: procedure p1(a varchar), procedure p1(a varchar2), procedure p1(a char)

5 Answers  


Is delete faster than truncate?

0 Answers  


Categories