how table is defined in plsql table? how can i select
column from plsql table?
can i use select * from plsql table type?



how table is defined in plsql table? how can i select column from plsql table? can i use select *..

Answer / abapdeveloper09

1. Define a TABLE data type
TYPE type_name IS TABLE OF
(column_type | variable%TYPE
| table.column%TYPE | table%ROWTYPE
INDEX BY BINARY_INTEGER);

2 Declare a variable of that type
identifier type_name;

Assume the PLsql table (emp_table_type) has emp's first
name and index columns and you want to display this column
data (Emp's first name)

TYPE type_name IS TABLE OF
employee.firstname%TYPE
INDEX BY BINARY_INTEGER;

emp_table_type type_name;

Load data into emp_table_type table

-- Display emp's first name data
FOR index in EMP_table_type.FIRST..EMP_table_type.LAST
LOOP
DBMS_OUTPUT.PUT_LINE(EMP_table_type(index));
END LOOP;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

How to create a new table by selecting rows from another table?

0 Answers  


How to view existing locks on the database?

0 Answers  


How to use values from other tables in update statements using oracle?

0 Answers  


How to use like conditions in oracle?

0 Answers  


How to count groups returned with the group by clause in oracle?

0 Answers  






Why cursor variables are easier to use than cursors?

0 Answers  


How do you increase the OS limitation for open files (LINUX and/or Solaris)?

0 Answers  


how many outer joins are used in a single sql query? is there any limitations for using of outer joins?

2 Answers   BOB Technologies, Cap Gemini, IBM,


Explain the truncate in oracle?

0 Answers  


How to create a new table in oracle?

0 Answers  


What is self-referential integrity constraint ?

2 Answers   SunGard,


What is integrity and what is constraint??Explain with example

0 Answers   Google,


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)