PL SQL Stored Procedures with examples || PL/SQL Tutorial for Beginners in Hindi

  Рет қаралды 33,495

Coding Glitz

Coding Glitz

Күн бұрын

Пікірлер: 56
@CodingGlitz
@CodingGlitz Жыл бұрын
Thanks for watching. If you want to connect on LinkedIn and stay updated with my professional updates and network with me, here's my LinkedIn profile: LinkedIn: www.linkedin.com/in/biplabparida
@itsdragonav
@itsdragonav 3 жыл бұрын
Actually i want to learn ETL, so please suggest me best video lectures that i can understood easily.
@prashantp9029
@prashantp9029 3 жыл бұрын
I was eagerly waiting for the same
@bhuv16
@bhuv16 3 жыл бұрын
Great Work..Please continue with your whole video series
@CodingGlitz
@CodingGlitz 3 жыл бұрын
Sure.. Thanks😃
@manishagupta5307
@manishagupta5307 Жыл бұрын
Big fan of urs sir.Its very useful for me as s beginner.
@CodingGlitz
@CodingGlitz Жыл бұрын
Thanks 👍
@aaryanb4real
@aaryanb4real 8 ай бұрын
i started watching your videos before my exam and really sir you teach very well all concepts clear🙏🏽
@CodingGlitz
@CodingGlitz 8 ай бұрын
Glad to hear that
@atharvajadhav2972
@atharvajadhav2972 Жыл бұрын
Sir your teaching is so amazing
@bhanuchaurasia6335
@bhanuchaurasia6335 2 жыл бұрын
Nice lecture Aj Procedure Concept clear hua .....
@CodingGlitz
@CodingGlitz 2 жыл бұрын
Thanks🙂
@kanikasuneja7777
@kanikasuneja7777 5 ай бұрын
22:16 vhi pe, kha pe? pls be clear... Agr OUT nhi mention krte to kya hoga?
@NTR_manavadu
@NTR_manavadu 8 ай бұрын
why do we need z int here while executting the proc... we cant directly execute it without declaring?
@randomtubebangla4867
@randomtubebangla4867 2 жыл бұрын
Crystal clear brother
@atishkumarbarik1375
@atishkumarbarik1375 2 жыл бұрын
Hi sir, Plz guide us on realtime scenario 🙏
@vamshikrishna9204
@vamshikrishna9204 Жыл бұрын
Sir every time why you are selecting the code and executing it Why are you writing two times begin and end is that correct way at 20:05
@CodingGlitz
@CodingGlitz Жыл бұрын
Regarding selecting code: That has been my practice for years. To debug a smaller part of the query it helps. And I am not able to see where I have used 2 begins.
@vamshikrishna9204
@vamshikrishna9204 Жыл бұрын
@@CodingGlitz At 20:44 already you declared begin .In that section you have written v_z:=v_z*v_z Then again for passing values again you written begin
@CodingGlitz
@CodingGlitz Жыл бұрын
I think you are confused. Actually there are 2 parts. 1st part is till the 1st end; before declare, which is the stored procedure. 2nd part starts from DECLARE till the 2nd end. Which is used for executing the procedure. This is explained at 17:13 Please increase the speed to 1.5x or 2x but don't skip otherwise you will face such issues.
@vamshikrishna9204
@vamshikrishna9204 Жыл бұрын
@@CodingGlitz ok sir now I understood sir can please provide notes in comment box Thank you for replying sir
@CodingGlitz
@CodingGlitz Жыл бұрын
Don't have notes. Will try to prepare and share.
@hrishi2839
@hrishi2839 2 ай бұрын
I m facing issue while executing the procedure, output dont come
@hrishi2839
@hrishi2839 2 ай бұрын
Ok issue is fixed, repeating playlist again...
@nomadickeshav4760
@nomadickeshav4760 Жыл бұрын
Hi bro great efforts can u please help me to connect oracle sql dev to oracle db facing issue since more than 15 days..showing some errors
@pawanpetkar5670
@pawanpetkar5670 Жыл бұрын
Great work ...please make video on binary integer using in procedure
@mainlykanchan8740
@mainlykanchan8740 2 жыл бұрын
Thanks for video 🙏🏼
@vijayarana2087
@vijayarana2087 Жыл бұрын
For the last two examples OUT and Inout is is mandatory to call the procedure from declare section? can we use execute?
@MUSTAQIM_BAGWAN
@MUSTAQIM_BAGWAN Жыл бұрын
Forward declaration in procedure explain kre plz
@gauravgupta-rc8uq
@gauravgupta-rc8uq Жыл бұрын
how can write in sql server for finding maximum between two no
@prakashmore1108
@prakashmore1108 Жыл бұрын
sir you wroye is instead of as is it allowed ?
@CodingGlitz
@CodingGlitz Жыл бұрын
Sorry didn't get you
@ll_ashu_ll
@ll_ashu_ll Жыл бұрын
Sir in case of in parameter or out parameter can v take input from user for value Like when we create normal program of plsql that time we can declare V_name := '&enter_name' When we execute query that it will ask to enter name from to user
@CodingGlitz
@CodingGlitz Жыл бұрын
Yes that is the use of parameters, to take input from user
@viveksing1292
@viveksing1292 Жыл бұрын
Procedure for the Nth min salary create or replace procedure min_salary(n number ,v_salary out number) as begin select min(salary) into v_salary from (select salary from employee_info order by salary desc fetch first n rows only); end; excution of procedure: declare n number:=4; s_salary number; begin min_salary(n,s_salary); dbms_output.put_line(s_salary); end;
@ArbindKumar-fw8xw
@ArbindKumar-fw8xw Жыл бұрын
Super 👌
@dineshkumarachari8757
@dineshkumarachari8757 Жыл бұрын
i'm create simple select statement stored procedure in oracle sql developer tool is not create. what will do? any access required?i;m already give stored procedure access on user any other else?
@CodingGlitz
@CodingGlitz Жыл бұрын
You should be able to create. Just verify again if you have Create grant for your user.
@tarunsuthar7427
@tarunsuthar7427 Жыл бұрын
Isn't IN for pass by value and OUT for pass by reference??
@MundheNitin
@MundheNitin 2 жыл бұрын
hi sir ,how to find nth highet salary using store procedure
@CodingGlitz
@CodingGlitz 2 жыл бұрын
Nth highest salary can be found using simple queries no need to use stored procedures. But if you want to use stored procedure then you can take N as parameter and use it in your query. For Nth highest salary query using 3 different solution pls refer: kzbin.info/www/bejne/oqHLpaR8j5Kch8U
@MUSTAQIM_BAGWAN
@MUSTAQIM_BAGWAN Жыл бұрын
Kl paper he or aaj tum ye video dekh rho ho hmm.😅
@diraneserges6076
@diraneserges6076 2 жыл бұрын
Thanks very much
@pranishsonone7839
@pranishsonone7839 2 жыл бұрын
bhai aap task solve karne me help Karo na or clear vese mene Kiya he bu error bata raha he
@Vinod_DeshBhakat
@Vinod_DeshBhakat 9 ай бұрын
Sir it show error 😢😢
@VaishnaviMondhe
@VaishnaviMondhe Жыл бұрын
HI SIR ........ CAN YOU PLEASE EXPLAIN IT AGAIN...PLEASE
@prashantp9029
@prashantp9029 3 жыл бұрын
Hi, please share some more example
@himanshuarora1910
@himanshuarora1910 2 жыл бұрын
still i didnt get whats the need for procedure we could have do it without procedure 🤯
@nitinmahajan2868
@nitinmahajan2868 Жыл бұрын
💫💫💫
@saaii9
@saaii9 Жыл бұрын
Error ara he bhai live sql me karetho
@viveksing1292
@viveksing1292 Жыл бұрын
Kindly check the procedure create or replace procedure min_salary(n number) is begin select min(salary) from (select salary from employee_info order by salary desc fetch first n rows only); end;
@nd8223
@nd8223 3 жыл бұрын
Tho Chhhaliye Shuru karthe Hai
@gauravgupta-rc8uq
@gauravgupta-rc8uq Жыл бұрын
create procedure NTHhighsalary @n int as begin select e1.salary ,count( distinct e2.SALARY) from EMPLOYEE e1 join EMPLOYEE e2 on e1.SALARY
@miclevarghese5869
@miclevarghese5869 6 ай бұрын
CREATE OR REPLACE PROCEDURE myNTH(nthsal INT) IS num1 employee.salary%type; num2 number; BEGIN SELECT e1.salary, count(distinct e2.Salary) into num1,num2 from EMPLOYEE E1 JOIN EMPLOYEE E2 ON E1.Salary
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
PROCEDURES IN PL/SQL WITH EXAMPLES  || PL/SQL TUTORIAL
8:54
Crack Concepts
Рет қаралды 193 М.
Stored Procedures in PL/SQL | Oracle PL/SQL Tutorial Videos | Mr.Vijay Kumar
18:54
🔥 Master MSQL Stored Procedures in Hindi
41:39
Learn Code With Durgesh
Рет қаралды 42 М.
Apps Technical 70: Procedure in PLSQL
22:32
Tech Shooter
Рет қаралды 4,7 М.
Learning PL/SQL programming
29:21
BBarters
Рет қаралды 638 М.
Oracle - PL/SQL - Creating Procedure
14:54
TutorialsPoint
Рет қаралды 103 М.