-
Notifications
You must be signed in to change notification settings - Fork 0
/
SQL_Procedural_Lang.txt
1368 lines (929 loc) · 29.2 KB
/
SQL_Procedural_Lang.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
set serveroutput on;
============================================================================
//To set delimiter or terminator:
SET SQLTERMINATOR /
(only 1 char is allowed as terminator)
============================================================================
PRINT HELLO
=============================================================================
begin
dbms_output.put_line('hello....');
end;
/
output:
hello...
------------------------------------------------------------------------------
ADDITION:
==============================================================================
declare
n1 number(5);
n2 number(5);
add number(5);
begin
n1:=10;
n2:=10;
add:=n1+n2;
dbms_output.put_line('addition is : '||add);
end;
/
output:
addition is : 20
--------------------------------------------------------------------------------
SUBSTRACTION:
===============================================================================
declare
n1 number(5);
n2 number(5);
sub number(5);
begin
n1:=50;
n2:=20;
sub:=n1-n2;
dbms_output.put_line('subtraction is : ' || sub);
end;
/
output:
subtraction is : 30
-----------------------------------------------------------------------------------
MULTIPLICATION:
==================================================================================
declare
n1 number(5);
n2 number(5);
multi number(5);
begin
n1:=50;
n2:=20;
multi:=n1*n2;
dbms_output.put_line('multiplication is : ' || multi);
end;
/
output:
multiplication is : 1000
---------------------------------------------------------------------------------------
DIVISION:
=======================================================================================
declare
n1 number(5);
n2 number(5);
div number(5);
begin
n1:=50;
n2:=5;
div:=n1/n2;
dbms_output.put_line('division is : ' || div);
end;
/
output:
division is : 10
--------------------------------------------------------------------------------------------
for float :
declare
n1 number(5,2);
n2 number(5,2);
add number(5,2);
begin
n1:=10.2;
n2:=10.2;
add:=n1+n2;
dbms_output.put_line('addition is : ' || add);
end;
/
output:
addition is : 20.4
---------------------------------------------------------------------------------------------
AREA OF CIRCLE:
=============================================================================================
declare
r number(3,2);
ca number (5,2);
begin
r:=&r;
ca:=3.14*r*r;
dbms_output.put_line('Area of Circle = '||ca);
end;
/
output:
Enter value for r: 3
old 5: r:=&r;
new 5: r:=3;
Area of Circle = 28.26
---------------------------------------------------------------------------------------------------
AREA OF TRIANGLE:
==================================================================================================
declare
l number(3,2);
b number(3,2);
ta number(5,2);
begin
l:=&l;
b:=&b;
ta:=0.5*l*b;
dbms_output.put_line('Area of Triangle = '||ta);
end;
/
output:
Enter value for l: 5
old 6: l:=&l;
new 6: l:=5;
Enter value for b: 5
old 7: b:=&b;
new 7: b:=5;
Area of Triangle = 12.5
-----------------------------------------------------------------------------------------------------------
===========================================================================================================
TAKING DATA FROM LOCAL TABLE TO PL SQL BLOCK:
===========================================================================================================
TO FIND SALARY AND NAME WHEN EMPLOYEE ID IS GIVEN:
===========================================================================================================
create table employee
(
empid number(5) PRIMARY KEY,
empname varchar2(20),
empsalary float,
city varchar2(20),
deptno number(5)
);
insert into employee values(101,'Ramesh',10000,'Mumbai',10);
insert into employee values (102,'Amit',20000,'Chennai',20);
insert into employee values (103,'Suresh',5000,'Pune',10);
insert into employee values (105,'Ganesh',12000,'Mumbai',30);
declare
eid employee.empid%type;
enm employee.empname%type;
sal employee.empsalary%type;
begin
eid:=&eid;
select empname,empsalary INTO enm,sal from employee where empid=eid;
dbms_output.put_line('Employee ID : '||eid);
dbms_output.put_line('Employee Name : '||enm);
dbms_output.put_line('Employee Salary : '||sal);
end;
/
Enter value for eid: 101
old 6: eid:=&eid;
new 6: eid:=101;
Employee ID : 101
Employee Name : Ramesh
Employee Salary : 10000
-------------------------------------------------------------------------------------------------------------------------------------
declare
enm employee.empname%type;
eid employee.empid%type;
ecity employee.city%type;
begin
enm:=&enm;
select empid,city INTO eid,ecity from employee where empname=enm;
dbms_output.put_line('EMPLOYEE ID:'||eid);
dbms_output.put_line('CITY:'||ecity);
end;
/
---------------------------------------------------------------------------------------------------------------------------------------
SELECT AND UPDATE:
=======================================================================================================================================
declare
eid employee.empid%type;
enm employee.empname%type;
sal employee.empsalary%type;
incr employee.empsalary%type;
newsal employee.empsalary%type;
begin
eid:=&eid;
select empname,empsalary INTO enm,sal from employee where empid=eid;
dbms_output.put_line('EMPLOYEE ID :'||eid);
dbms_output.put_line('EMPLOYEE NAME :'||enm);
dbms_output.put_line('EMPLOYEE SALARY:'||sal);
incr:=sal*0.06;
newsal:=incr+sal;
update employee set empsalary=newsal where empid=eid;
dbms_output.put_line('SALARY UPDATED');
select empsalary into newsal from employee where empid=eid;
dbms_output.put_line('Old Salary:'||sal);
dbms_output.put_line('New Salary:'||newsal);
end;
/
output:
Enter value for eid: 101
old 8: eid:=&eid;
new 8: eid:=101;
EMPLOYEE ID :101
EMPLOYEE NAME :Ramesh
EMPLOYEE SALARY:10000
SALARY UPDATED
Old Salary:10000
New Salary:10600
----------------------------------------------------------------------------------------------------------------------------------------------
IF ELSE:
=============================================================================================================================================
declare
eid employee.empid%type;
enm employee.empname%type;
sal employee.empsalary%type;
begin
eid:=&eid;
select empname,empsalary INTO enm,sal from employee where empid=eid;
if sal>10000 then
dbms_output.put_line('SALARY IS GREATER THAN 10000');
else
dbms_output.put_line('SALARY IS LESS THAN 10000');
end if;
end;
/
output:
Enter value for eid: 101
old 7: eid:=&eid;
new 7: eid:=101;
SALARY IS GREATER THAN 10000
----------------------------------------------------------------------------------------------------------------------------------------------------
Greater between 2 number:
declare
n1 number(3);
n2 number(3);
begin
n1:=&n1;
n2:=&n2;
if n1>n2 then
dbms_output.put_line('n1 is greater');
else
dbms_output.put_line('n2 is greater');
end if;
end;
/
---------------------------------------------------------------------------------------------------------------------------------------------------------------
Greater between 3 number:
declare
n1 number(3);
n2 number(3);
n3 number(3);
begin
n1:=&n1;
n2:=&n2;
n3:=&n3;
if n1>n2 and n1>n3 then
dbms_output.put_line('n1 is greater');
elsif n2>n1 and n2>n3 then
dbms_output.put_line('n2 is greater');
elsif n3>n1 and n2>n2 then
dbms_output.put_line('n3 is greater');
else
dbms_output.put_line('all numbers are equal');
end if;
end;
/
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
Even odd no:
declare
n1 number(3);
begin
n1:=&n1;
if (n1 mod 2)=0 then
dbms_output.put_line('Even Number');
else
dbms_output.put_line('Odd Number');
end if;
end;
/
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Check if no is divisible by 3 and 5 ,or just 3 or 5 , or not divisible by 3 and 5:
declare
n number;
begin
n:=&n;
if (n mod 3)=0 and (n mod 5)=0 then
dbms_output.put_line('No is divisible by 3 and 5');
elsif (n mod 3)=0 and (n mod 5)!=0 then
dbms_output.put_line('No is divisible by 3 and not divisible by 5');
elsif (n mod 5)=0 and (n mod 3)!=0 then
dbms_output.put_line('No is divisible by 5 and not divisible by 3');
else
dbms_output.put_line('No is not divisible by 3 and 5');
end if;
end;
/
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
declare
id employee.empid%type;
sal employee.empsalary%type;
incr employee.empsalary%type;
newsal employee.empsalary%type;
begin
id:=&id;
select empsalary INTO sal from employee where empid=id;
dbms_output.put_line('Salary : '||sal);
if (sal<10000) then
incr:=sal*0.05;
newsal:=incr + sal;
dbms_output.put_line(' New Salary : '||newsal);
update employee set empsalary=newsal where empid=id;
elsif (sal>10000 )and (sal<20000 )then
incr:=sal*0.10;
newsal:=incr+sal;
dbms_output.put_line(' New Salary : '||newsal);
update employee set empsalary=newsal where empid=id;
else
incr:=sal*0.20;
newsal:=incr+sal;
dbms_output.put_line('New Salary :'||newsal);
update employee set empsalary=newsal where empid=id;
end if;
end;
/
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
============================================================================================================================================================================
EXIT LOOP:
============================================================================================================================================================================
Loop for printing numbers 1 to 10:
declare
i number;
begin
i:=1;
loop
exit when i>10;
dbms_output.put_line(i);
i:=i+1;
end loop;
end;
/
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Loop for printing table of 2:
declare
n1 number;
n2 number;
begin
n1:=2;
n2:=1;
loop
dbms_output.put_line(n1*n2);
exit when n2>9;
n2:=n2+1;
end loop;
end;
/
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
===================================================================================================================================================================================
WHILE LOOP:
===================================================================================================================================================================================
Print 1 to 10 in while loop:
declare
a number;
begin
a:=1;
while a <=10
loop
dbms_output.put_line('Value of a is ' || a);
a:=a+1;
end loop;
end;
/
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Print 3 times table in while loop:
declare
n1 number;
n2 number;
begin
n1:=3;
n2:=1;
while n2<=10
loop
dbms_output.put_line(n1*n2);
n2:=n2+1;
end loop;
end;
/
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
==========================================================================================================================================================================
FOR LOOP:
=========================================================================================================================================================================
Print 1 to 10 in For Loop:
DECLARE
n number;
BEGIN
n:=1;
for i in 1..10 loop
dbms_output.put_line(i);
end loop;
END;
/
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Print 1 to 10 in reverse in For Loop:
DECLARE
n number;
BEGIN
n:=1;
for i in reverse 1..10 loop
dbms_output.put_line(i);
end loop;
END;
/
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Factor in For Loop:
DECLARE
n number;
BEGIN
n:=&n;
for i in 1..10
loop
if (n mod i)=0 then
dbms_output.put_line(i);
end if;
end loop;
END;
/
-------------------------------------------------------------------------------------------------------------------------------------------------
Factorial in For Loop:
DECLARE
r number;
n number;
BEGIN
n:=&n;
r:=1;
for i in 1..n
loop
r:=r*i;
end loop;
dbms_output.put_line(r);
END;
/
-----------------------------------------------------------------------------------------------------------------------------------------------
Prime Number in For Loop:
DECLARE
n number;
flag number;
BEGIN
n:=&n;
flag:=0;
for i in 2..(n-1)
loop
if (n mod i)=0 then
flag:=1;
end if;
end loop;
if flag=1 then
dbms_output.put_line('Not a prime number');
else
dbms_output.put_line('Prime number');
end if;
END;
/
-------------------------------------------------------------------------------------------------------------------------------------
Reverse in For Loop:
declare
r number (5);
n number (5);
begin
=========================================================================================================================================
CURSOR:
=========================================================================================================================================
EXPLICIT Cursor:
=========================================================================================================================================
DECLARE
Cursor c1
IS
select empname,empsalary from employee;
fnm Employee.empname%type;
sal Employee.empsalary%type;
cnt number:=0;
BEGIN
OPEN c1;
LOOP
Fetch c1 into fnm,sal;
Exit when c1%notfound;
dbms_output.put_line('Name is '||fnm);
dbms_output.put_line('Salary is '||sal);
cnt:=cnt+1;
END LOOP;
dbms_output.put_line('Total no of records are '||cnt);
close c1;
END;
/
----------------------------------------------------------------------------------------------------------------------------------------------------
DECLARE
Cursor c1
IS
select empid,empname,empsalary from employee;
fnm Employee.empname%type;
sal Employee.empsalary%type;
id Employee.empid%type;
incr Employee.empsalary%type;
cnt number:=0;
BEGIN
OPEN c1;
LOOP
Fetch c1 into id,fnm,sal;
Exit when c1%notfound;
if (sal<10000) then
incr:=sal*0.05;
elsif (sal>10000 )and (sal<20000 )then
incr:=sal*0.10;
else
incr:=sal*0.20;
end if;
update employee set empsalary=empsalary+incr where empid=id;
dbms_output.put_line('record updated');
cnt:=cnt+1;
END LOOP;
dbms_output.put_line('Total no of records are '||cnt);
close c1;
END;
/
-----------------------------------------------------------------------------------------------------------------------------------------
DECLARE
cursor emp_cur
is
select * from employee where deptno=&no;
v_emp employee%rowtype;
BEGIN
open emp_cur;
loop
fetch emp_cur into v_emp;
exit when emp_cur%notfound;
dbms_output.put_line(v_emp.empname||' '||v_emp.empsalary);
end loop;
close emp_cur;
END;
/
-----------------------------------------------------------------------------------------------------------------------------------------
EXPLICIT CURSOR USING FOR LOOP:
-----------------------------------------------------------------------------------------------------------------------------------------
DECLARE
cursor c1 is select * from employee;
BEGIN
for e_rec in c1
loop
dbms_output.put_line(e_rec.empname||' '||e_rec.empsalary);
end loop;
end;
/
----------------------------------------------------------------------------------------------------------------------------------------
DECLARE
Cursor c1
IS
select empid,empname,empsalary from employee;
incr Employee.empsalary%type;
cnt number:=0;
BEGIN
for e_rec in c1
loop
if (e_rec.empsalary<10000) then
incr:=e_rec.empsalary*0.05;
elsif (e_rec.empsalary>10000 )and (e_rec.empsalary<20000 )then
incr:=e_rec.empsalary*0.10;
else
incr:=e_rec.empsalary*0.20;
end if;
update employee set empsalary=empsalary+incr where empid=id;
dbms_output.put_line(e_rec.empname||' '||e_rec.empsalary);
cnt:=cnt+1;
END LOOP;
dbms_output.put_line('Total no of records are '||cnt);
END;
/
-----------------------------------------------------------------------------------------------------------------------------------------
=========================================================================================================================================
IMPLICIT CURSOR:
=========================================================================================================================================
DECLARE
cnt number;
BEGIN
update employee set empsalary=empsalary+1000;
cnt:=SQL%rowcount;
dbms_output.put_line('total no of rows updated'||cnt);
END;
/
--------------------------------------------------------------------------------------------------------------------------------------------
DECLARE
cnt number;
BEGIN
update employee set empsalary=empsalary-1000 where deptno=50;
if sql%found then
cnt:=sql%rowcount;
dbms_output.put_line('total no of rows updated:'||cnt);
elsif sql%notfound then
dbms_output.put_line('record not found');
end if;
END;
/
------------------------------------------------------------------------------------------------------------------------------------------------
===============================================================================================================================================
PROCEDURE:
===============================================================================================================================================
CREATING PROCEDURE:
------------------------------------------------------------------------------------------------------------------------------------------------
create or replace procedure p1
is
BEGIN
dbms_output.put_line('record not found');
END;
/
----------------------------------------------------------------------------------------------------------------------------------------------
CALLING PROCEDURE:
---------------------------------------------------------------------------------------------------------------------------------------------
EXECUTE p1;
OR
begin
p1;
p1;
p1;
end;
/
------------------------------------------------------------------------------------------------------------------------------------------------
create or replace procedure padd(n1 in number,n2 in number)
is
add number;
BEGIN
add:=n1+n2;
dbms_output.put_line('addition is='||add);
end;
/
execute padd(10,20);
output:
addition is=30
--------------------------------------------------------------------------------------------
create or replace procedure padd(n1 in number,n2 in number,add out number)
is
BEGIN
add:=n1+n2;
END;
/
DECLARE
n1 number;
n2 number;
add number;
BEGIN
n1:=&n1;
n2:=&n2;
padd(n1,n2,add);
dbms_output.put_line('addition ='||add);
END;
/
-----------------------------------------------------------------------------------------------
create or replace procedure empsal(empid in number)
is
BEGIN
DECLARE
eid employee.empid%type;
enm employee.empname%type;
sal employee.empsalary%type;
annualsal employee.empsalary%type;
incr employee.empsalary%type;
BEGIN
eid:=&eid;
select empid,empname,empsalary INTO eid,enm,sal from employee where empid=eid;
annualsal:=sal*12;
dbms_output.put_line(eid||' '||enm||' '||sal);
dbms_output.put_line('annual salary='||annualsal);
if annualsal<100000 then
incr:=sal*0.09;
else
incr:=sal*0.06;
end if;
update employee set empsalary=(sal+incr) where empid=eid;
dbms_output.put_line('salary updated');
dbms_output.put_line('new salary='||(sal+incr));
END;
END;
/
begin
empsal(103);
end;
/
output:
101 Ramesh 10600
annual salary=127200
salary updated
new salary=11236
------------------------------------------------------------------------------
==============================================================================
FUNCTION:
==============================================================================
create function:
---------------------------------------------------------------------------
create or replace function annual(incr employee.empsalary%type) return employee.empsalary%type
is
ann employee.empsalary% type;
BEGIN
ann:=incr*12;
return ann;
END;
/
-----------------------------------------------------------------------------------------------------
execute function:
-----------------------------------------------------------------------------------------------------