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-3.sql
277 lines (233 loc) · 4.59 KB
/
assignment-3.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
-- Anindya Kundu - 510817020
--1
declare
year number := 2016;
begin
if mod(year, 4) = 0
and mod(year, 100) != 0
or mod(year, 400) = 0 then
dbms_output.put_line(year || ' is a leap year ');
else
dbms_output.put_line(year || ' is not a leap year.');
end if;
end;
/
--2
declare
numorg integer := 1221;
numrev integer := 0;
temp integer;
begin
temp := numorg;
while temp > 0 loop
numrev := numrev * 10 + mod(temp, 10);
temp := floor(temp / 10);
end loop;
if numorg = numrev then
dbms_output.put_line(numorg || ' is a palindrome');
else
dbms_output.put_line(numorg || ' is not a palindrome');
end if;
end;
/
--3
declare
numorg integer := 153;
numnew integer := 0;
temp integer;
begin
temp := numorg;
while temp > 0 loop
numnew := numnew + power(mod(temp, 10), 3);
temp := floor(temp / 10);
end loop;
if numorg = numnew then
dbms_output.put_line(numnew || ' is an armstrong number');
else
dbms_output.put_line(numnew || ' is not an armstrong number');
end if;
end;
/
--4
declare
num1 integer := 14;
num2 integer := 35;
num3 integer := 84;
tem1 integer;
tem2 integer;
tem3 integer;
temp integer;
begin
tem1 := num1;
tem2 := num2;
tem3 := num3;
while mod(tem2, tem1) != 0 loop
temp := mod(tem2, tem1);
tem2 := tem1;
tem1 := temp;
end loop;
while mod(tem3, tem1) != 0 loop
temp := mod(tem3, tem1);
tem3 := tem1;
tem1 := temp;
end loop;
dbms_output.put_line('GCD of ' || num1 ||
', ' || num2 || ', and ' || num3 || ' is ' || tem1);
end;
/
--5
declare
num1 integer := 2;
num2 integer := 4;
num3 integer := 6;
tem1 integer;
tem2 integer;
tem3 integer;
temp integer;
lcm1 integer;
begin
tem1 := num1;
tem2 := num2;
tem3 := num3;
while mod(tem2, tem1) != 0 loop
temp := mod(tem2, tem1);
tem2 := tem1;
tem1 := temp;
end loop;
lcm1 := (num1 * num2) / tem1;
while mod(tem3, tem1) != 0 loop
temp := mod(tem3, tem1);
tem3 := tem1;
tem1 := temp;
end loop;
tem1 := (lcm1 * num3) / tem1;
dbms_output.put_line('LCM of ' || num1 ||
', ' || num2 || ', and ' || num3 || ' is ' || tem1);
end;
/
--6
declare
num integer := 28;
sumfac integer := 1;
i integer;
begin
for i in 2 .. (num - 1) loop
if (mod(num, i) = 0) then
sumfac := sumfac + i;
end if;
end loop;
if sumfac = num and num != 1 then
dbms_output.put_line(num || ' is a perfect number.');
else
dbms_output.put_line(num || ' is not a perfect number.');
end if;
end;
/
--7
declare
string varchar2(16) := 'thequickfox';
countV integer := 0;
countC integer := 0;
i integer := 0;
c character;
begin
for i in 1 .. length(string) loop
c := substr(string, i, 1);
if c = 'a' or c = 'e' or c = 'i' or c = 'o' or c = 'u' then
countV := countV + 1;
else
countC := countC + 1;
end if;
end loop;
dbms_output.put_line('For the string ' || string);
dbms_output.put_line('Vowels: ' || countV || ', Consonants: ' || countC);
end;
/
--8
declare
actNum varchar2(6);
actAmt integer;
begin
actNum := '&actNum';
select amount
into actAmt
from deposit
where Act_no = actNum;
if actAmt >= 5000 then
dbms_output.Put_line('Amount is ' || actAmt);
else
actAmt := actAmt + 2000;
dbms_output.Put_line('New amount is ' || actAmt);
end if;
update deposit
set amount = actAmt
where Act_no = actNum;
end;
/
--9
create table emp(
eno varchar2(4),
name varchar2(10),
sal number(8,2)
);
insert into emp values('E01', 'ANKIT', 8000);
insert into emp values('E02', 'SHOUNAK', 5000);
insert into emp values('E03', 'ARIJIT', 6000);
insert into emp values('E04', 'MOYEEN', 300000);
insert into emp values('E05', 'MAINAK', 7500);
insert into emp values('E06', 'KUNAL', 40000);
select * from emp;
declare
e_id varchar2(4);
e_name varchar2(10);
begin
e_id := &e_id;
select name
into e_name
from emp
where eno = 'e_id';
dbms_output.put_line('Hi ' || e_id || ' - ' || e_name);
exception
when NO_DATA_FOUND then
dbms_output.put_line(e_id || ' does not exist');
end;
/
declare
e_id varchar2(4);
e_name varchar2(10);
e_sal number(8,2);
cnt number := 0;
begin
e_id := '&e_id';
select count(*)
into cnt
from emp
where eno = e_id;
if cnt = 0 then
e_name := '&e_name';
e_sal := &e_sal;
dbms_output.put_line(e_id || ' added');
else
dbms_output.put_line('Duplicate ID');
end if;
end;
/
--10
declare
bname varchar2(16);
cnt number;
begin
bname := '&bname';
select count(b_name)
into cnt
from borrow
where B_name = bname;
if cnt > 0 then
delete from borrow
where B_name = bname;
dbms_output.put_line(cnt || ' rows have been deleted');
else
dbms_output.put_line('No entries in branch ' || bname);
end if;
end;
/