What is PL/SQL table ?

Answers were Sorted based on User's Feedback



What is PL/SQL table ?..

Answer / firefly

An associative array (or INDEX-BY table) that can be
indexed by NUMBER or VARCHAR2. Elements are retrieved using
number or string subscript values. Unlike with data tables,
PL/SQL tables are stored in memory. PL/SQL Tables are
sparse and elements are unordered

Is This Answer Correct ?    5 Yes 0 No

What is PL/SQL table ?..

Answer / avi007

pl/sql table -

type table_name is varchar2(25) of index by BINARY_INTEGER

It is having only one column of varchar2

Is This Answer Correct ?    0 Yes 0 No

What is PL/SQL table ?..

Answer / sree

pl/sql tables are temporary array like objects in pl/sql
block.pl/sql tables have one column and one primary key.the
size of pl/sql tables unconstrained i.e the number of rows
can be increased by dynamically

Is This Answer Correct ?    0 Yes 0 No

What is PL/SQL table ?..

Answer / aravinda

index by tables , nested table and varrays collectively
called are called PL/SQL tables.

Is This Answer Correct ?    0 Yes 2 No

What is PL/SQL table ?..

Answer / karunakarreddy.boyapally

it is a collection of all the schema objects those are
tables,views,triggers,indexes etc....

Is This Answer Correct ?    0 Yes 4 No

What is PL/SQL table ?..

Answer / menan

a set of SQL commands are known as pl/sql

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More SQL PLSQL Interview Questions

What schema means?

1 Answers  


How to write a query to show the details of a student from students table whose

1 Answers  


How can I pass the inner procedure value to outer procedure ?

2 Answers  


Can we use commit or rollback in trigger? If yes, then how. Please explain with a suitable example?

5 Answers   HSBC,


How do I copy a table in sql?

1 Answers  


What is TABLE SPACE?

4 Answers   ABB, TCS,


Explain table and field in sql?

1 Answers  


What is function and procedure in pl sql?

1 Answers  


which tcp/ip port does sql server run on? : Sql dba

1 Answers  


How to copy a table in another table with datas?

9 Answers  


what is try_catch block in procedure

1 Answers  


What is int identity in sql?

1 Answers  


Categories