Implicit Cursors in PL/SQL | Oracle PL/SQL Tutorial Videos | Mr.Vijay Kumar

preview_player
Показать описание
Implicit Cursors in PL/SQL
Рекомендации по теме
Комментарии
Автор

Crystal clear explanation .. Thanks for uploading plsql videos..👍👍👌👌

Автор

Great explanation I had watched this video I really came to know regarding implicit cursors...u deals best epitome for implicit cursors

umakoyilada
Автор

Sir, thank you very much for your all efforts and such a nice way of explaining and teaching everything.

TekhXpert
Автор

Thank you so much sir 🙏🙏. Even in my institute they didn't explain this much clear. 💐💐

summaseen
Автор

Superb explanation sir..i like the way u teach

arunrocketz
Автор

what is the difference between

select first_name, last_name, salary, hire_date from employees where employee_id=100;

vs

create or replace procedure sp_pd
as
v_fname varchar2(50);
v_lname varchar2(50);
v_salary number;
v_hdate date;
begin
select first_name, last_name, salary, hire_date into v_fname, v_lname, v_salary, v_hdate from employees where employee_id=100;
end;

athanaaa
Автор

If you are looking for the explicit cursor explaination, here it is (if I'm not mistaken)

albandaumer
Автор

very informative, but why are you repeating your sentences..Its very irritating. overall good knowleder you have. Thanks for the video.

deveshsharma