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...


How many levels can subqueries be nested in a FROM clause?

Answers were Sorted based on User's Feedback



How many levels can subqueries be nested in a FROM clause?..

Answer / vikas trivedi

32 levels of nesting within a query is possible.

Is This Answer Correct ?    36 Yes 12 No

How many levels can subqueries be nested in a FROM clause?..

Answer / ravi

255 levels

Is This Answer Correct ?    24 Yes 9 No

How many levels can subqueries be nested in a FROM clause?..

Answer / pradeep

http://download.oracle.com/docs/cd/B19306_01/server.102/b142
00/queries007.htm

The below stated on above page from oracle

A subquery can contain another subquery. Oracle Database
imposes no limit on the number of subquery levels in the
FROM clause of the top-level query. You can nest up to 255
levels of subqueries in the WHERE clause.

Is This Answer Correct ?    8 Yes 1 No

How many levels can subqueries be nested in a FROM clause?..

Answer / slokh

FROM clause
A subquery can also be found in the FROM clause. These are
called inline views.

For example:

select suppliers.name, subquery1.total_amt
from suppliers,
(select supplier_id, Sum(orders.amount) as total_amt
from orders
group by supplier_id) subquery1,
where subquery1.supplier_id = suppliers.supplier_id;

In this example, we've created a subquery in the FROM
clause as follows:

(select supplier_id, Sum(orders.amount) as total_amt
from orders
group by supplier_id) subquery1

This subquery has been aliased with the name subquery1.
This will be the name used to reference this subquery or
any of its fields.

Limitations:

Oracle allows an unlimited number of subqueries in the FROM
clause.

Is This Answer Correct ?    10 Yes 5 No

How many levels can subqueries be nested in a FROM clause?..

Answer / shekaran04

Oracle imposes no limit on the number of SUB Queries levels
in the from clause

Is This Answer Correct ?    5 Yes 3 No

How many levels can subqueries be nested in a FROM clause?..

Answer / sulochana

There is no limit on the no.of sub queries in the FROM clause.

in WHERE clause ,we can write upto 255 levels only..





Thanks & Regards,
Sulochana

Is This Answer Correct ?    5 Yes 3 No

How many levels can subqueries be nested in a FROM clause?..

Answer / john

32 number of Subquery

http://msdn.microsoft.com/en-us/library/ms143432.aspx

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More SQL PLSQL Interview Questions

how many tables will create when we create table, what are they? : Sql dba

0 Answers  


Name the operator which is used in the query for pattern matching?

0 Answers  


display records from 5 to 9 using rowid or rownum

5 Answers   Agile Software,


what is a foreign key ? : Sql dba

0 Answers  


Is subquery faster than join?

0 Answers  


how can we find the select statement is indexed or not?

3 Answers   CTS,


What is procedure in pl sql?

0 Answers  


Is left join same as join?

0 Answers  


write a pl/sql function if enter a value=0 then output value=1 and vise verse with out using if and case statements.

3 Answers   Zensar,


what does the t-sql command ident_current does? : Transact sql

0 Answers  


What is function and procedure in pl sql?

0 Answers  


What is column?

0 Answers  


Categories