PROCEDURES IN PL/SQL WITH EXAMPLES || PL/SQL TUTORIAL

  Рет қаралды 187,398

Crack Concepts

Crack Concepts

Күн бұрын

Пікірлер: 66
@mohitagrawal1555
@mohitagrawal1555 3 жыл бұрын
your way of explaining concept is amazing !!
@mohitdodiya3989
@mohitdodiya3989 3 жыл бұрын
Thanks ma'am ,❤️Wonderful explanation and understandable .it's very important and useful for me.👍
@zeenathkhatoon7701
@zeenathkhatoon7701 4 жыл бұрын
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
@amazonking828
@amazonking828 3 жыл бұрын
lovely voice.Great combination of melodious voice and intelligence.
@rohitkumar-bf9xe
@rohitkumar-bf9xe 3 жыл бұрын
This is probably the best explained lesson on this topic i have seen but you should have to show practical also...
@IniyadharshiniGomadurai
@IniyadharshiniGomadurai 5 ай бұрын
your concepts are very clear ,it is easy to understand. can you pls increase your volume.
@lovelydaya5038
@lovelydaya5038 3 жыл бұрын
Your explanation is very good and your voice is just awesome
@jaishreekrishna7511
@jaishreekrishna7511 Жыл бұрын
The video was simple and to the point.. Thank you very much
@vishalbhola07
@vishalbhola07 5 жыл бұрын
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
@chittardhar8861 Жыл бұрын
you got any answers man??
@samratpatel8060
@samratpatel8060 11 ай бұрын
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.
@MalayRawwrr
@MalayRawwrr 19 күн бұрын
@@samratpatel8060 great answer!
@sakshishikhare2376
@sakshishikhare2376 3 жыл бұрын
Thank you so much ! It was very help ful for my exam
@umangsharma1742
@umangsharma1742 4 жыл бұрын
Nicely explained. Got the whole concept.
@jamesfernandes4044
@jamesfernandes4044 3 жыл бұрын
Explainedwith perfection 👍.. Keep up the work
@r.vignesh1431
@r.vignesh1431 3 жыл бұрын
Thank u mam .....it was so helpful for my practical xam.. ❤
@prathamesh0195
@prathamesh0195 2 жыл бұрын
Excellent mam i can understand very good
@nishanksoni502
@nishanksoni502 4 жыл бұрын
Thanks for the video i was looking for this topic in an easy way. :)
@waqaskhan2165
@waqaskhan2165 3 жыл бұрын
Voice is just owesome
@nimishpandey2693
@nimishpandey2693 2 жыл бұрын
padhai krle bhai avaaz pe mat dhyaan de
@waqaskhan2165
@waqaskhan2165 Жыл бұрын
@@nimishpandey2693 parhai krli bhai ab job krrha hun
@chaitanyadamarla05
@chaitanyadamarla05 3 жыл бұрын
Good morning have a nice day... Thank you a lot
@middleofficechitose4866
@middleofficechitose4866 3 жыл бұрын
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
@sahilkr28 Жыл бұрын
Awesome Explanation !❤
@bodlashivaprasad9505
@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 .?
@naveenpab220
@naveenpab220 2 жыл бұрын
Voice is good and explanation alsi
@suchitrat5888
@suchitrat5888 2 жыл бұрын
Thank you so much 🥰 madam
@sumitghosh5025
@sumitghosh5025 2 жыл бұрын
Thanks mam .....got my topic cleared
@naturesboy7482
@naturesboy7482 4 жыл бұрын
Ya it is really helpful
@danhassler6585
@danhassler6585 Жыл бұрын
Very good
@Ganeshay-996
@Ganeshay-996 4 жыл бұрын
Superb job
@MdAfzal-mj1mu
@MdAfzal-mj1mu 3 жыл бұрын
Thnx for this amazing video ..
@samratpatel8060
@samratpatel8060 11 ай бұрын
3:23 isnt CREATE PROCEDURE findmul() should be written?
@joaovinicius4838
@joaovinicius4838 8 ай бұрын
Thanks from BRASIL SIL SIL SIL🤙
@rjiv7778
@rjiv7778 Жыл бұрын
Best video i found
@sindhuc7359
@sindhuc7359 4 жыл бұрын
Thank you so much mam! Very helpful
@alwin804
@alwin804 4 жыл бұрын
Really helpful ...........
@yashrajtechnicals9456
@yashrajtechnicals9456 3 жыл бұрын
Nice explanation it helped ma aaaaa looot 🔥
@mafikulislam3469
@mafikulislam3469 4 жыл бұрын
Your videos on pl/sql are really helpful. Waiting for more videos. Please suggest me a book on pl/sql.
@30dhanush
@30dhanush 4 жыл бұрын
Can you upload bulk collect concepts and collections and nested if.
@ishangarg5498
@ishangarg5498 2 жыл бұрын
very nicely explained
@mahendranp6715
@mahendranp6715 2 жыл бұрын
Nice explanation
@elitexmedia2899
@elitexmedia2899 3 жыл бұрын
when to use 'call' and when to use 'exec' for calling the stored procedure?
@mahdinouira3261
@mahdinouira3261 Жыл бұрын
cab u explain the named notation procedure
@thisisvimala9999
@thisisvimala9999 2 жыл бұрын
Can we call procedure inside the function??
@kalaipriya4831
@kalaipriya4831 3 жыл бұрын
i have doubt that procedures have parameter modes that u Taught IN,OUT,INOUT...For functions also as same
@shaikhrahil5621
@shaikhrahil5621 Жыл бұрын
What's the difference between is/as didn't understand that other than I got it😅
@sonughatte3693
@sonughatte3693 8 ай бұрын
Why did you stop creating videos like this ma'am
@crackconcepts
@crackconcepts 8 ай бұрын
I still do. Check out the latest videos
@mmanigandan2474
@mmanigandan2474 2 жыл бұрын
Hi mam. can you example the package
@shivpatil390
@shivpatil390 3 жыл бұрын
the procdure will be same for cube of a number right ? we just have to put x= x*x*x?
@amazonking828
@amazonking828 3 жыл бұрын
yes
@LALITJANGID-j6z
@LALITJANGID-j6z 3 жыл бұрын
👌👌👌👌👌👌👌
@pravingurav7041
@pravingurav7041 4 жыл бұрын
Mam any app for run plsql code on mobile
@sunnybasu5920
@sunnybasu5920 2 жыл бұрын
can anyone kindly tell me why create/replace keyword was not used inside the pl/sql for creating the procedure? thanks in advance
@chittardhar8861
@chittardhar8861 Жыл бұрын
tell me too , if you got to know
@harshavardhanreddy523
@harshavardhanreddy523 2 жыл бұрын
Thankyou so much
@ejpeninger
@ejpeninger 3 жыл бұрын
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.
@manikantabathula9037
@manikantabathula9037 2 жыл бұрын
thanks mam..
@take_the_trade
@take_the_trade 3 жыл бұрын
What is diff btwn IS and AS?
@thatoramphore6709
@thatoramphore6709 3 жыл бұрын
They are the same. Most people prefer IS
@mohammedmuzammil2767
@mohammedmuzammil2767 Жыл бұрын
Thankyou mam
@anirudhsharma5526
@anirudhsharma5526 2 жыл бұрын
Can we perform all arithmetic operations in one single procedure ?
@sauskeuchiha6749
@sauskeuchiha6749 Жыл бұрын
thank_kuu :)
@saurabhsinha8913
@saurabhsinha8913 3 жыл бұрын
okk
SQL VS PL/SQL VS T-Sql (WITH EXAMPLES)
3:33
Crack Concepts
Рет қаралды 64 М.
SIMPLEST INTRODUCTION  TO PL/SQL WITH EXAMPLES
7:37
Crack Concepts
Рет қаралды 21 М.
ROSÉ & Bruno Mars - APT. (Official Music Video)
02:54
ROSÉ
Рет қаралды 321 МЛН
ТЮРЕМЩИК В БОКСЕ! #shorts
00:58
HARD_MMA
Рет қаралды 1,3 МЛН
Advanced SQL Tutorial | Stored Procedures + Use Cases
6:15
Alex The Analyst
Рет қаралды 443 М.
Stored Procedures in PL/SQL | Oracle PL/SQL Tutorial Videos | Mr.Vijay Kumar
18:54
Learning PL/SQL programming
29:21
BBarters
Рет қаралды 617 М.
CURSORS IN PL/SQL WITH EXAMPLES | PL/SQL TUTORIAL
5:07
Crack Concepts
Рет қаралды 303 М.
FUNCTIONS IN PL SQL WITH EXAMPLES | PL/SQL TUTORIAL
4:03
Crack Concepts
Рет қаралды 125 М.
Oracle - PL/SQL - Creating Procedure
14:54
TutorialsPoint
Рет қаралды 102 М.
Database Indexing for Dumb Developers
15:59
Laith Academy
Рет қаралды 70 М.