Varray (Collections) in Oracle

preview_player
Показать описание
#SQL
#PLSQL
#Oracle
#ORACLEAPPS
#OracelFusion
#TechTalkswithNaresh
#Naresh
#R12
#EBSConsultant

Join Our Telegram Group:

FOLLOW US :
============

For More details Contact Us:

--------------------------------------------------------------------------------------------------------------------------------------------------------

This video will help them who are in the learning phase of PLSQL/SQL. If you have any doubt's regarding this video write in comment section. If you want any other video related to SQL please comment in comment section. Please Like, Share and Subscribe the video.

Example:
DECLARE
type array_list IS varray(5) OF varchar2(100);
name array_list;
BEGIN
name := array_list('Naresh', 'Alex' , 'Anil' , 'Arjun' , 'John');
FOR i IN 1..5
LOOP
END LOOP;
END;
Рекомендации по теме