PL/SQL tutorial 66: PL/SQL Collection Method TRIM in Oracle Database

preview_player
Показать описание

------------------------------------------------------------------------
►►►LINKS◄◄◄

Previous Tutorial

-------------------------------------------------------------------------
►Make sure you SUBSCRIBE and be the 1st one to see my videos!
-------------------------------------------------------------------------
►►►Find me on Social Media◄◄◄
Follow What I am up to as it happens on

___Facebook Official Page of Manish Sharma___

You can also Email me at
for E-mail address please check the About section

Please please LIKE and SHARE my videos it makes me happy.
Thanks for liking, commenting, sharing and watching more of our videos

♥ I LOVE ALL MY VIEWERS AND SUBSCRIBERS
Рекомендации по теме
Комментарии
Автор

sir you are really doing a great thing god bless you

nishatchotu
Автор

Great work Manish. Keep up the great Job!!! Goodluck!!

rajvizag
Автор

very informative video. Keep up the work. can you do a Oracle architecture videos

srikanthgandhi
Автор

Sir can u please let me know, how to get certificate on plsql .

thirumaleshb
Автор

is watching his videos alone enough for certification ?

renukaanand
Автор

SET SERVEROUTPUT ON;

DECLARE

TYPE name_array IS VARRAY (5) OF VARCHAR2 (30);

v_name name_array = name_array('James', 'Thomas', 'Peter', 'Robb', 'Tom');

BEGIN

DBMS_OUTPUT.PUT_LINE (v_name(1));
END;

Output:?

BalijaDileepkumar