This repository was archived by the owner on Jun 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathassignment-4.sql
316 lines (259 loc) · 5.51 KB
/
assignment-4.sql
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
-- Anindya Kundu - 510817020
create table emp(
eno varchar2(4),
name varchar2(10),
dno varchar2(4),
sal number(8,2),
loc varchar2(10)
);
insert into emp values('E01', 'ANKIT', 'D01', 8000, 'Kolkata');
insert into emp values('E02', 'SHOUNAK', 'D03', 5000, 'Kolkata');
insert into emp values('E03', 'ARIJIT', 'D02', 6000, 'Mumbai');
insert into emp values('E04', 'MOYEEN', 'D02', 3000, 'Kolkata');
insert into emp values('E05', 'MAINAK', 'D03', 7500, 'Delhi');
insert into emp values('E06', 'KUNAL', 'D01', 4000, 'Chennai');
select * from emp;
set serveroutput on;
--1
declare
cursor c is select sal from emp;
sal_temp emp.sal % type;
sal_high emp.sal % type;
cnt number := 0;
begin
open c;
loop
fetch c into sal_temp;
select max(sal) into sal_high from emp;
if sal_high = sal_temp then
delete from emp
where sal = sal_temp;
cnt := cnt + 1;
end if;
if cnt = 2 then
exit;
end if;
end loop;
if c % ISOPEN then
close c;
end if;
end;
/
--1
declare
cursor c is
select eno
from emp
order by sal desc;
enum emp.eno % type;
i integer;
begin
open c;
for i in 1 .. 2 loop
fetch c into enum;
delete from emp
where eno = enum;
end loop;
if c % ISOPEN then
close c;
end if;
end;
/
--2
declare
row_temp emp % rowtype;
cursor c is
select eno, name, sal, loc
from emp
where loc = 'Kolkata';
cnt number := 0;
val number;
begin
open c;
loop
fetch c into row_temp;
exit when c % NOTFOUND;
val := row_temp.sal;
val := val * 1.15;
update emp
set sal = val
where eno = row_temp.eno;
cnt := cnt + 1;
end loop;
if cnt > 0 then
dbms_output.put_line('Salary updated for ' || cnt || ' employees');
else
dbms_output.Put_line('No employee from Kolkata');
end if;
if c % ISOPEN then
close c;
end if;
end;
/
create table account (
act_no varchar2(8),
age numeric(3),
amount numeric(8, 2)
);
insert into account values('ACT01', 57, 5000);
insert into account values('ACT02', 62, 2000);
insert into account values('ACT03', 65, 8000);
insert into account values('ACT04', 49, 4500);
insert into account values('ACT05', 61, 3700);
insert into account values('ACT06', 68, 9100);
select * from account;
--3 a
declare
act_1 account.act_no % type := '&act_1';
act_2 account.act_no % type := '&act_2';
cursor c is
select act_no
from account;
ano account.act_no % type;
amt account.amount % type;
begin
open c;
loop
fetch c into ano;
exit when c % NOTFOUND;
if ano = act_1 then
select amount into amt from account where act_no = ano;
if amt > 1999 then
update account
set amount = amount - 2000
where act_no = act_1;
update account
set amount = amount + 2000
where act_no = act_2;
dbms_output.put_line('Transfer completed successfully');
else
dbms_output.put_line('Insufficient amount');
end if;
end if;
end loop;
if c % ISOPEN then
close c;
end if;
end;
/
--3 b
declare
cursor c is
select act_no
from account
where age > 60;
ano account.act_no % type;
begin
open c;
for i in 1 .. 3 loop
fetch c into ano;
exit when c % NOTFOUND;
update account
set amount = amount * 1.05
where act_no = ano;
end loop;
if c % ISOPEN then
close c;
end if;
end;
/
--4
declare
cursor c is select * from emp;
emp_temp emp % rowtype;
sal_temp emp.sal % type;
eno_temp emp.eno % type;
cnt number;
begin
insert into emp values('E07', 'ROHAN', 'D02', 5000, 'Mumbai');
open c;
loop
fetch c into emp_temp;
exit when c % NOTFOUND;
sal_temp := emp_temp.sal;
sal_temp := sal_temp + 2000;
if (sal_temp > 20000) then
sal_temp := sal_temp - 2000;
update emp set sal = sal_temp where eno = emp_temp.eno;
end if;
end loop;
if c % ISOPEN
close c;
end if;
end;
/
--5
declare
cursor c is select * from emp;
emp_temp emp % rowtype;
flag number := 0;
dno_temp emp.dno % type := '&dno_temp';
invalid_dept_exception exception;
begin
open c;
loop
fetch c into emp_temp;
exit when c % NOTFOUND;
if dno_temp = emp_temp.dno then
flag := 1;
dbms_output.put_line('The salary of employee ' || emp_temp.eno || ' is ' || emp_temp.sal);
end if;
end loop;
if flag = 0 then
raise invalid_dept_exception;
end if;
exception
when invalid_dept_exception then
dbms_output.put_line('Invalid department no');
end;
/
--6
create table product (
pno varchar2(4),
pname varchar2(16),
actual_price number(8, 2),
sale_price number(8, 2)
);
insert into product values('P01', 'ABC', 100, 120);
insert into product values('P02', 'BCD', 120, 130);
insert into product values('P03', 'CDE', 100, 90);
insert into product values('P04', 'DEF', 100, 100);
insert into product values('P05', 'EFG', 130, 220);
select * from product;
declare
cursor c is select * from product;
row_temp product % rowtype;
pnum product.pno % type := '&pnum';
flag integer := 0;
profit number(4, 2);
invalid_product_no exception;
profit_zero exception;
begin
open c;
loop
fetch c into row_temp;
exit when c % NOTFOUND;
if row_temp.pno = pnum then
flag := 1;
profit := row_temp.sale_price - row_temp.actual_price;
if profit > 0 then
dbms_output.put_line('Profit on product ' || pnum || ' is ' || profit);
end if;
if profit <= 0 then
raise profit_zero;
end if;
end if;
end loop;
if flag = 0 then
raise invalid_product_no;
end if;
if c % ISOPEN then
close c;
end if;
exception
when invalid_product_no then
dbms_output.put_line('Invalid product number');
when profit_zero then
dbms_output.put_line('Zero profit');
end;
/