SQL Server - Create Complex Stored Procedures

  Рет қаралды 57,574

Bhaskar Jogi (Go Online Trainings)

Bhaskar Jogi (Go Online Trainings)

8 жыл бұрын

In this video, we learn how to complex Stored Procedure to print loan statement.

Пікірлер: 41
@bhakthasingh8198
@bhakthasingh8198 Жыл бұрын
You are an excellent Teacher? Great job!!
@mmohan692
@mmohan692 5 ай бұрын
Thank you very much sir .I got better clarity after i watched your videos
@BhaskarJogiSQLandBI
@BhaskarJogiSQLandBI 2 ай бұрын
Thank you
@kesavanmechanical
@kesavanmechanical Жыл бұрын
Thankyou sir ! Taking real time example and explaining very tough concepts easily.
@BhaskarJogiSQLandBI
@BhaskarJogiSQLandBI Жыл бұрын
You are most welcome
@lalithkumar001
@lalithkumar001 2 жыл бұрын
This video was very well explained. Crisp and clear.
@mercydabbs3330
@mercydabbs3330 2 жыл бұрын
I know this was done a long time ago, but you are the best! Thank you for touching all important scenarios with real example. I hope I can see more of your videos.
@BhaskarJogiSQLandBI
@BhaskarJogiSQLandBI Жыл бұрын
Thanks lot
@tiksG
@tiksG 6 жыл бұрын
It's really helpful sirji I understood completely without having enough knowledge of SQL. I request you sirji please upload complete series of SQL, so it helps for lots of students. Thanks for doing such nice work for students as well as for professionals. Thanks again.
@supermasters9156
@supermasters9156 2 жыл бұрын
Thank you very much for this video. You explained it so well. Keep up your good work.
@riteshpatel1836
@riteshpatel1836 Ай бұрын
Great Explaination
@BhaskarJogiSQLandBI
@BhaskarJogiSQLandBI Ай бұрын
Thank you
@kunnudev7250
@kunnudev7250 4 жыл бұрын
Great job please continue awesome videos
@priyankatripathi562
@priyankatripathi562 6 жыл бұрын
awsome..Thanks for this
@prathameshshinde7281
@prathameshshinde7281 8 жыл бұрын
sir please continue your good work, it's tremendously helpful. Thank you so much🙂
@BhaskarJogiSQLandBI
@BhaskarJogiSQLandBI 8 жыл бұрын
You are welcome
@narayanagottipati5980
@narayanagottipati5980 5 жыл бұрын
@@BhaskarJogiSQLandBI sir please make a video on performance tuning...thanks
@RamRam-ce2yk
@RamRam-ce2yk 2 жыл бұрын
Thanks so much Sir.. ❤️🙏 Super explanation it's very easy to understand u r words. Thanks so much ❤️
@venkychepuri587
@venkychepuri587 6 жыл бұрын
Thank you So Much SIr
@iamwithyou6165
@iamwithyou6165 4 жыл бұрын
Excellent video 👌
@biswanathdas2688
@biswanathdas2688 8 жыл бұрын
its really helpful ..
@sunpreetsingh5143
@sunpreetsingh5143 5 жыл бұрын
very nicely explained ...
@harikrishnareddy2700
@harikrishnareddy2700 3 жыл бұрын
Great explanation, thanks a lot
@BhaskarJogiSQLandBI
@BhaskarJogiSQLandBI 3 жыл бұрын
You are welcome!
@Rajeeb701
@Rajeeb701 7 жыл бұрын
good helpful
@hemantkilanje8865
@hemantkilanje8865 3 жыл бұрын
Thanks🌹😊
@7to7media
@7to7media 5 жыл бұрын
Please make video on SQL performance tuning
@ramprashathmba6225
@ramprashathmba6225 7 жыл бұрын
Upload complete tutorial..so, that we can understood sir..Please
@naveenKumar-iq9dr
@naveenKumar-iq9dr 2 жыл бұрын
If we want give dynamically values how w e do
@maestroroshi1627
@maestroroshi1627 5 жыл бұрын
nice
@just4fun410
@just4fun410 7 жыл бұрын
Hello sir, Your tutorials are really very good, but the thing is if we take 1000000, for 2 year with rate of interest 14% , then it should come monthly emi is 48,013, but you have shown 53333.33. How is it possible,can u clarify that. Thanks Vamsi
@yamanthakur7352
@yamanthakur7352 Жыл бұрын
Simple maths : (100000*14*2)/100 =28000, Now plus principal amount : 28000+100000=128000 and divide by 24(2years) =128000/24=5,333.33
@priyankashinde2916
@priyankashinde2916 5 жыл бұрын
Can you please share video on optimisation
@aravindyadav996
@aravindyadav996 10 ай бұрын
HI SIR I HAVE TRIED THE CODE BUT IM GETTING ERROR CAN U PLS HELP ME
@BhaskarJogiSQLandBI
@BhaskarJogiSQLandBI 10 ай бұрын
Send me code to bhaskarjogi@gmail.com
@Anas_ILoveMyIndia
@Anas_ILoveMyIndia 4 жыл бұрын
Hi Sir, Please share iBank DB for my practice
@BhaskarJogiSQLandBI
@BhaskarJogiSQLandBI 4 жыл бұрын
send me a mail to bhaskarjogi@gmail.com
@Anas_ILoveMyIndia
@Anas_ILoveMyIndia 4 жыл бұрын
@@BhaskarJogiSQLandBI okay sir, Thank you..!!
@Suraaps1415
@Suraaps1415 4 жыл бұрын
find the procedure script below, modify the proc accordingly and run . ALTER PROCEDURE [dbo].[Proc_EMI_Amount] ( @LOANAMOUNT MONEY=100000, @INTEREST INT =14, @TENURE INT =2 ) AS BEGIN -- Declare a loan variable for loan date-- declare @LoanDT datetime set @LoanDT=GETDATE(); --FIND THE INTEREST AMOUNT BY USING LOAN AMOUNT FORMULA -- --formula =PNR/100 DECLARE @AMOUNT MONEY SET @AMOUNT= (@LOANAMOUNT*@INTEREST* @TENURE)/100 --CALCULATE TOATAL AMOUNT --TOTAL AMOUNT WOULD BE LOANAMOUNT + INTEREST DECLARE @TOTAMOUNT MONEY SET @TOTAMOUNT=@LOANAMOUNT+@INTEREST --CALCULATE THE EMI AMOUNT -- @TOTAL AMOUNT / NO OF MONTHS DECLARE @EMI MONEY SET @EMI= @TOTAMOUNT/(@TENURE*12) --USE WHILE LOOP AND DISPLAY THE OUTPUT DECLARE @MONTH INT SET @MONTH=1 WHILE(@MONTH
SQL Server - Triggers Part 1 of 3
51:23
Bhaskar Jogi (Go Online Trainings)
Рет қаралды 11 М.
SQL Server - Stored Procedures In Depth Part 1 of 4
46:09
Bhaskar Jogi (Go Online Trainings)
Рет қаралды 45 М.
Best KFC Homemade For My Son #cooking #shorts
00:58
BANKII
Рет қаралды 57 МЛН
ОСКАР vs БАДАБУМЧИК БОЙ!  УВЕЗЛИ на СКОРОЙ!
13:45
Бадабумчик
Рет қаралды 6 МЛН
تجربة أغرب توصيلة شحن ضد القطع تماما
00:56
صدام العزي
Рет қаралды 59 МЛН
- А что в креме? - Это кАкАооо! #КондитерДети
00:24
Телеканал ПЯТНИЦА
Рет қаралды 7 МЛН
Dynamic SQL in Stored Procedure | sql procedure dynamic queries
17:38
Training2SQL MSBI
Рет қаралды 14 М.
SQL Server Interview Questions
39:57
Bhaskar Jogi (Go Online Trainings)
Рет қаралды 91 М.
Stored Procedures in MySQL | Advanced MySQL Series
12:37
Alex The Analyst
Рет қаралды 30 М.
SQL  Stored Procedures
47:07
Gregory Thomas Hay
Рет қаралды 41 М.
Stored procedures in sql server   Part 18
20:11
kudvenkat
Рет қаралды 1,5 МЛН
SQL Server - SubQueries and Correlated SubQueries
1:05:41
Bhaskar Jogi (Go Online Trainings)
Рет қаралды 204 М.
SQL performance tuning and query optimization using execution plan
49:23
Best KFC Homemade For My Son #cooking #shorts
00:58
BANKII
Рет қаралды 57 МЛН