Thanks ma'am ,❤️Wonderful explanation and understandable .it's very important and useful for me.👍
@zeenathkhatoon77014 жыл бұрын
Could you plz write one sample procedure with one input parameter and one output parameter,that output parameter needs to return multiple values. FOR EXAMPLE: if we pass input parameter as employee designation(like developer) then it has to return all the employee id"s those who are working under that particular designation. plz make one more video with this concept,it will help all
@amazonking8283 жыл бұрын
lovely voice.Great combination of melodious voice and intelligence.
@rohitkumar-bf9xe3 жыл бұрын
This is probably the best explained lesson on this topic i have seen but you should have to show practical also...
@IniyadharshiniGomadurai5 ай бұрын
your concepts are very clear ,it is easy to understand. can you pls increase your volume.
@lovelydaya50383 жыл бұрын
Your explanation is very good and your voice is just awesome
@jaishreekrishna7511 Жыл бұрын
The video was simple and to the point.. Thank you very much
@vishalbhola075 жыл бұрын
While defining the procedure in 1st example why haven't we write create or replace procedure name instead of it normally procedure keyword is written.
@chittardhar8861 Жыл бұрын
you got any answers man??
@samratpatel806011 ай бұрын
In PL/SQL, there are different ways to create a procedure. The syntax you used earlier, starting with `PROCEDURE findmul(...) IS`, is one way. However, if you're creating the procedure separately, you can indeed use the `CREATE PROCEDURE` syntax. Here's an alternative version of your code using the `CREATE PROCEDURE` approach: ```plsql CREATE OR REPLACE PROCEDURE findmul( x IN NUMBER, y IN NUMBER, z OUT NUMBER ) AS BEGIN z := x * y; END findmul; / DECLARE a NUMBER; b NUMBER; c NUMBER; BEGIN a := 50; b := 10; findmul(a, b, c); DBMS_OUTPUT.PUT_LINE('Multiplication is ' || c); END; / ``` In this version, the `CREATE OR REPLACE PROCEDURE` statement is used to define the procedure separately from the anonymous PL/SQL block. The `DECLARE` section then declares variables and the `BEGIN` section contains the executable part of your code. The choice between creating the procedure within the anonymous block (`PROCEDURE findmul(...) IS ... BEGIN ... END;`) or separately (`CREATE PROCEDURE findmul(...) AS ...`) depends on your specific requirements and coding style preferences. Both approaches are valid in PL/SQL.
@MalayRawwrr19 күн бұрын
@@samratpatel8060 great answer!
@sakshishikhare23763 жыл бұрын
Thank you so much ! It was very help ful for my exam
@umangsharma17424 жыл бұрын
Nicely explained. Got the whole concept.
@jamesfernandes40443 жыл бұрын
Explainedwith perfection 👍.. Keep up the work
@r.vignesh14313 жыл бұрын
Thank u mam .....it was so helpful for my practical xam.. ❤
@prathamesh01952 жыл бұрын
Excellent mam i can understand very good
@nishanksoni5024 жыл бұрын
Thanks for the video i was looking for this topic in an easy way. :)
@waqaskhan21653 жыл бұрын
Voice is just owesome
@nimishpandey26932 жыл бұрын
padhai krle bhai avaaz pe mat dhyaan de
@waqaskhan2165 Жыл бұрын
@@nimishpandey2693 parhai krli bhai ab job krrha hun
@chaitanyadamarla053 жыл бұрын
Good morning have a nice day... Thank you a lot
@middleofficechitose48663 жыл бұрын
Wow, your tutorial is amazing, with simple presentation in a paper tou can make me understand how function and procedures in oracle. Thank you. Please make vid tutorial iseries n implementing this plnsql in orqcle apex, I'm sure your follower will grow more....cmiww
@sahilkr28 Жыл бұрын
Awesome Explanation !❤
@bodlashivaprasad9505 Жыл бұрын
Inside the 1st begin and end block we can perform the operation for abc or not. If your answer is yes. Then why you have taken another begin /end block. If your answer is no. Why we can not perform .?
@naveenpab2202 жыл бұрын
Voice is good and explanation alsi
@suchitrat58882 жыл бұрын
Thank you so much 🥰 madam
@sumitghosh50252 жыл бұрын
Thanks mam .....got my topic cleared
@naturesboy74824 жыл бұрын
Ya it is really helpful
@danhassler6585 Жыл бұрын
Very good
@Ganeshay-9964 жыл бұрын
Superb job
@MdAfzal-mj1mu3 жыл бұрын
Thnx for this amazing video ..
@samratpatel806011 ай бұрын
3:23 isnt CREATE PROCEDURE findmul() should be written?
@joaovinicius48388 ай бұрын
Thanks from BRASIL SIL SIL SIL🤙
@rjiv7778 Жыл бұрын
Best video i found
@sindhuc73594 жыл бұрын
Thank you so much mam! Very helpful
@alwin8044 жыл бұрын
Really helpful ...........
@yashrajtechnicals94563 жыл бұрын
Nice explanation it helped ma aaaaa looot 🔥
@mafikulislam34694 жыл бұрын
Your videos on pl/sql are really helpful. Waiting for more videos. Please suggest me a book on pl/sql.
@30dhanush4 жыл бұрын
Can you upload bulk collect concepts and collections and nested if.
@ishangarg54982 жыл бұрын
very nicely explained
@mahendranp67152 жыл бұрын
Nice explanation
@elitexmedia28993 жыл бұрын
when to use 'call' and when to use 'exec' for calling the stored procedure?
@mahdinouira3261 Жыл бұрын
cab u explain the named notation procedure
@thisisvimala99992 жыл бұрын
Can we call procedure inside the function??
@kalaipriya48313 жыл бұрын
i have doubt that procedures have parameter modes that u Taught IN,OUT,INOUT...For functions also as same
@shaikhrahil5621 Жыл бұрын
What's the difference between is/as didn't understand that other than I got it😅
@sonughatte36938 ай бұрын
Why did you stop creating videos like this ma'am
@crackconcepts8 ай бұрын
I still do. Check out the latest videos
@mmanigandan24742 жыл бұрын
Hi mam. can you example the package
@shivpatil3903 жыл бұрын
the procdure will be same for cube of a number right ? we just have to put x= x*x*x?
@amazonking8283 жыл бұрын
yes
@LALITJANGID-j6z3 жыл бұрын
👌👌👌👌👌👌👌
@pravingurav70414 жыл бұрын
Mam any app for run plsql code on mobile
@sunnybasu59202 жыл бұрын
can anyone kindly tell me why create/replace keyword was not used inside the pl/sql for creating the procedure? thanks in advance
@chittardhar8861 Жыл бұрын
tell me too , if you got to know
@harshavardhanreddy5232 жыл бұрын
Thankyou so much
@ejpeninger3 жыл бұрын
Thank you this was very helpful. In Oracle once you have created the procedure, can you later view and edit your code? This is not possible in MS SQL.
@manikantabathula90372 жыл бұрын
thanks mam..
@take_the_trade3 жыл бұрын
What is diff btwn IS and AS?
@thatoramphore67093 жыл бұрын
They are the same. Most people prefer IS
@mohammedmuzammil2767 Жыл бұрын
Thankyou mam
@anirudhsharma55262 жыл бұрын
Can we perform all arithmetic operations in one single procedure ?