-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.sql
398 lines (304 loc) · 11.6 KB
/
database.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
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
-- create database loteria;
-- create extension btree_gin;
create table tipoJogos(
id_tipo integer primary key,
nome varchar not null
);
create table concurso(
id_concurso integer primary key,
dataInicio timestamp not null,
dataFim timestamp not null,
arrecadacaoTotal money,
valorDoPremio money,
id_tipo integer not null,
id_sort integer
);
create table concursoLoto(
ganhadores15 integer,
ganhadores14 integer,
ganhadores13 integer,
ganhadores12 integer,
ganhadores11 integer
) inherits(concurso);
create table concursoMega(
acumulado boolean not null,
somadorMegaDaVirada money,
ganhadores6 integer,
ganhadores5 integer,
ganhadores4 integer
) inherits(concurso);
create table sorteio(
concursoPremiado integer primary key
);
create table sorteioLoto(
bola1 integer not null,
bola2 integer not null,
bola3 integer not null,
bola4 integer not null,
bola5 integer not null,
bola6 integer not null,
bola7 integer not null,
bola8 integer not null,
bola9 integer not null,
bola10 integer not null,
bola11 integer not null,
bola12 integer not null,
bola13 integer not null,
bola14 integer not null,
bola15 integer not null
) inherits(sorteio);
create table sorteioMega(
bola1 integer not null,
bola2 integer not null,
bola3 integer not null,
bola4 integer not null,
bola5 integer not null,
bola6 integer not null
) inherits(sorteio);
-- Foreign keys adicionadas
alter table concurso add constraint fktipo foreign key (id_tipo) references tipoJogos(id_tipo);
alter table concurso add constraint fksorteio foreign key (id_sort) references sorteio(concursoPremiado) on delete cascade on update cascade;
-- Inserção table tipoJogos
insert into tipojogos values (1, 'Lotofácil');
insert into tipojogos values (2, 'Mega-Sena');
-- 6
create index idxMaiorPremioMega on concursoMega(valordopremio);
--drop index if exists idxmaiorpremiomega;
create index idxMaiorPremioLoto on concursoLoto(valordopremio);
--drop index if exists idxmaiorpremioloto;
--create extension btree_gin;
create index idxNumMaisRepeteMega on sorteiomega using gin (bola1);
--drop index if exists idxNumMaisRepeteMega;
create index idxNumMaisRepeteLoto on sorteioLoto using gin (bola1);
--drop index if exists idxNumMaisRepeteLoto;
create index idx4GanhadoresMega on concursoMega(ganhadores4);
--drop index if exists idx4GanhadoresMega;
create index idx5GanhadoresMega on concursoMega(ganhadores5);
--drop index if exists idx5GanhadoresMega;
create index idx6GanhadoresMega on concursoMega(ganhadores6);
--drop index if exists idx5GanhadoresMega;
create index idx11GanhadoresLoto on concursoLoto(ganhadores11);
--drop index if exists idx11GanhadoresLoto;
create index idx12GanhadoresLoto on concursoLoto(ganhadores12);
--drop index if exists idx12GanhadoresLoto;
create index idx13GanhadoresLoto on concursoLoto(ganhadores13);
--drop index if exists idx13GanhadoresLoto;
create index idx14GanhadoresLoto on concursoLoto(ganhadores14);
--drop index if exists idx14GanhadoresLoto;
create index idx15GanhadoresLoto on concursoLoto(ganhadores15);
--drop index if exists idx15GanhadoresLoto;
-- Questão 7 - resolução:
-- Para a mega
select bola1, count(bola1) as qtdeBola1 from sorteiomega
group by bola1
order by bola1 asc, qtdeBola1;
-- Para a loto
select bola1, count(bola1) as qtdeBola1 from sorteioloto
group by bola1
order by bola1 asc, qtdeBola1;
--Concurso com maior premio
CREATE OR REPLACE FUNCTION MaiorPremio(jogo integer)
RETURNS table(id_concurso integer,id_tipo integer,valordopremio money) AS $$
BEGIN
RETURN QUERY(SELECT C.id_concurso, C.id_tipo, MAX(C.valordopremio)
FROM concurso C
WHERE C.id_tipo = jogo
GROUP BY C.id_concurso,C.id_tipo
ORDER BY C.valordopremio DESC
FETCH FIRST 1 ROW ONLY);
END;
$$ LANGUAGE plpgsql;
select MaiorPremio(1); -- Loto
select MaiorPremio(2); -- Mega
-- Maior quantidade de ganhadores da história.
CREATE OR REPLACE FUNCTION MaisGanhadoresMega()
RETURNS table(id_concurso integer,ganhadores6 integer,ganhadores5 integer,ganhadores4 integer) AS $$
BEGIN
RETURN QUERY (SELECT M.id_concurso,max(M.ganhadores6),max(M.ganhadores5),max(M.ganhadores4)
FROM concursoMega M
GROUP BY M.id_concurso,M.ganhadores6,M.ganhadores5,M.ganhadores4
ORDER BY M.ganhadores6 DESC
FETCH FIRST 1 ROW ONLY);
END;
$$ LANGUAGE plpgsql;
select MaisGanhadoresMega();
CREATE OR REPLACE FUNCTION MaisGanhadoresLoto()
RETURNS table(id_concurso integer,ganhadores15 integer,ganhadores14 integer,ganhadores13 integer,ganhadores12 integer,
ganhadores11 integer) AS $$
BEGIN
RETURN QUERY (SELECT L.id_concurso,max(L.ganhadores15),max(L.ganhadores14),
max(L.ganhadores13),max(L.ganhadores12),max(L.ganhadores11)
FROM concursoLoto L
GROUP BY L.id_concurso,L.ganhadores15,L.ganhadores14,L.ganhadores13,L.ganhadores12,L.ganhadores11
ORDER BY L.ganhadores15 DESC
FETCH FIRST 1 ROW ONLY);
END;
$$ LANGUAGE plpgsql;
-- Auditoria
create table auditoriaConcursoLoto
(
operacao varchar(6),
data timestamp,
id_concurso integer,
dataInicio timestamp not null,
dataFim timestamp not null,
arrecadacaoTotal money,
valorDoPremio money,
id_tipo integer not null,
id_sort integer,
ganhadores15 integer,
ganhadores14 integer,
ganhadores13 integer,
ganhadores12 integer,
ganhadores11 integer
);
create table auditoriaConcursoMega
(
operacao varchar(6),
data timestamp,
id_concurso integer,
dataInicio timestamp not null,
dataFim timestamp not null,
arrecadacaoTotal money,
valorDoPremio money,
id_tipo integer not null,
id_sort integer,
acumulado boolean not null,
somadorMegaDaVirada money,
ganhadores6 integer,
ganhadores5 integer,
ganhadores4 integer
);
create or replace function processoauditorialoto()
returns trigger as $concursoaudloto$
begin
if(TG_OP = 'DELETE') then
insert into auditoriaConcursoLoto select 'delete', now(), old.*;
return old;
elsif(TG_OP = 'UPDATE') then
insert into auditoriaConcursoLoto select 'update', now(), new.*;
return new;
elsif(TG_OP = 'INSERT') then
insert into auditoriaConcursoLoto select 'insert', now(), new.*;
return new;
end if;
return null;
end;
$concursoaudloto$ language plpgsql;
create trigger concursoaudloto
after insert or update or delete on concursoLoto
for each row execute procedure processoauditorialoto();
create or replace function processoauditoriamega()
returns trigger as $concursoaudmega$
begin
if(TG_OP = 'DELETE') then
insert into auditoriaConcursoMega select 'delete', now(), old.*;
return old;
elsif(TG_OP = 'UPDATE') then
insert into auditoriaConcursoMega select 'update', now(), new.*;
return new;
elsif(TG_OP = 'INSERT') then
insert into auditoriaConcursoMega select 'insert', now(), new.*;
return new;
end if;
return null;
end;
$concursoaudmega$ language plpgsql;
create trigger concursoaudmega
after insert or update or delete on concursoMega
for each row execute procedure processoauditoriamega();
--select * from concursoMega;
--select * from auditoriaConcursoLoto;
--delete from auditoriaConcursoLoto where id_concurso != -1;
--delete from concursoLoto where concursoLoto.id_concurso != -1;
-- Quantidade de ganhadores do ultimo concurso
create materialized view ganhadoresmega as
select sum(ganhadores6)+sum(ganhadores5)+sum(ganhadores5) as numero_de_ganhadores from concursoMega
where id_concurso = (select max(id_concurso) from concursoMega)-1;
CREATE OR REPLACE FUNCTION atualizaganhadoresmega()
RETURNS trigger AS $$
BEGIN
REFRESH MATERIALIZED VIEW ganhadoresmega;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER attultimosmega AFTER INSERT ON concursoMega
FOR EACH ROW EXECUTE PROCEDURE atualizaganhadoresmega();
create materialized view ganhadoresloto as
select sum(ganhadores15)+sum(ganhadores14)+sum(ganhadores13)+sum(ganhadores12)+sum(ganhadores11) as numero_de_ganhadores from concursoLoto
where id_concurso = (select max(id_concurso) from concursoLoto)-1;
CREATE OR REPLACE FUNCTION atualizaganhadoresloto()
RETURNS trigger AS $$
BEGIN
REFRESH MATERIALIZED VIEW ganhadoresloto;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER attultimosloto AFTER INSERT ON concursoLoto
FOR EACH ROW EXECUTE PROCEDURE atualizaganhadoresloto();
---Valor acumulado
create materialized view acumuladomega as
select valordopremio from concursoMega
where id_concurso = ((select max(id_concurso) from concursoMega)-1) and acumulado = TRUE;
CREATE OR REPLACE FUNCTION checaracumulo()
RETURNS trigger AS $$
BEGIN
REFRESH MATERIALIZED VIEW acumulomega;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER acmega AFTER INSERT ON concursoMega
FOR EACH ROW EXECUTE PROCEDURE checaracumulo();
---- informação dos 3 últimos concursos
-- Visão 2: informaçoes dos ultimos 3 concursos. - concurso, numero sorteado, premio e quantidade de ganhadores
create materialized view ultimosconcursosloto as
select concursoLoto.id_concurso as concurso, concursoLoto.valordopremio as premio,
sum(concursoLoto.ganhadores15) + sum(concursoLoto.ganhadores14) + sum(concursoLoto.ganhadores13) + sum(concursoLoto.ganhadores12) + sum(concursoLoto.ganhadores11) as numero_de_ganhadores, bola1, bola2, bola3, bola4, bola5, bola6, bola7, bola8, bola9, bola10, bola11, bola12, bola13, bola14, bola15
from concursoLoto inner join sorteioloto on sorteioloto.concursoPremiado=concursoLoto.id_concurso
where ((concursoLoto.id_concurso = (select max(id_concurso) from concursoLoto)) or
((concursoLoto.id_concurso = (select max(id_concurso) from concursoLoto)-1) or ((concursoLoto.id_concurso = (select
max(id_concurso) from concursoLoto)-2))))
group by id_concurso, concursoLoto.valordopremio, bola1, bola2, bola3, bola4, bola5, bola6, bola7, bola8, bola9, bola10, bola11, bola12, bola13, bola14, bola15;
create materialized view ultimosconcursosmega as
select concursoMega.id_concurso as concurso, concursoMega.valordopremio as premio, sum(concursoMega.ganhadores6) +
sum(concursoMega.ganhadores5) + sum(concursoMega.ganhadores4) as numero_de_ganhadores,
bola1, bola2, bola3, bola4, bola5, bola6 from concursoMega inner join sorteiomega on sorteiomega.concursoPremiado=concursoMega.id_concurso
where ((concursoMega.id_concurso = (select max(id_concurso) from concursoMega)) or
((concursoMega.id_concurso = (select max(id_concurso) from concursoMega)-1) or
((concursoMega.id_concurso = (select max(id_concurso) from concursoMega)-2))))
group by id_concurso, concursoMega.valordopremio, bola1, bola2, bola3, bola4, bola5, bola6;
CREATE OR REPLACE FUNCTION attultimoloto()
RETURNS trigger AS $$
BEGIN
REFRESH MATERIALIZED VIEW ultimosconcursosloto;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER attultimoslotoconc AFTER INSERT ON concursoLoto
FOR EACH ROW EXECUTE PROCEDURE attultimoloto();
CREATE OR REPLACE FUNCTION attultimomega()
RETURNS trigger AS $$
BEGIN
REFRESH MATERIALIZED VIEW ultimosconcursosmega;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER attultimomegaconc AFTER INSERT ON concursoLoto
FOR EACH ROW EXECUTE PROCEDURE attultimomega();
-- Função data
--Data aleatoria (indicar periodo na funcao se quiser alterar)
create or replace function data() returns date as
$$
begin
return date(timestamp '2009-05-27 00:00:00' +
random() * (timestamp '2018-11-21 00:00:00' -
timestamp '2009-05-27 00:00:00'));
end;
$$language plpgsql;
-- select data()
CREATE OR REPLACE FUNCTION random_integer(integer, integer)
RETURNS integer AS
$BODY$
select trunc( $1 + (($2*random()) ))::integer
$BODY$
LANGUAGE sql VOLATILE