-
Notifications
You must be signed in to change notification settings - Fork 0
/
instrutores_salarios.sql
45 lines (35 loc) · 1.5 KB
/
instrutores_salarios.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
CREATE TABLE log_instrutores (
id SERIAL PRIMARY KEY,
informacao VARCHAR(255),
momento_criacao TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
CREATE OR REPLACE FUNCTION cria_instrutor(nome_instrutor VARCHAR, salario_instrutor DECIMAL) RETURNS void AS $$
DECLARE
id_instrutor_inserido INTEGER;
media_salarial DECIMAL;
instrutores_recebem_menos INTEGER DEFAULT 0;
total_instrutores INTEGER DEFAULT 0;
salario DECIMAL;
percentual DECIMAL(10, 0);
BEGIN
INSERT INTO instrutor (nome, salario) VALUES (nome_instrutor, salario_instrutor)
RETURNING id INTO id_instrutor_inserido;
SELECT AVG(instrutor.salario) INTO media_salarial FROM instrutor WHERE id <> id_instrutor_inserido;
IF salario_instrutor > media_salarial THEN
INSERT INTO log_instrutores (informacao) VALUES (nome_instrutor || ' recebe acima da média');
END IF;
FOR salario IN SELECT instrutor.salario FROM instrutor WHERE id <> id_instrutor_inserido LOOP
total_instrutores := total_instrutores + 1;
IF salario_instrutor > salario THEN
instrutores_recebem_menos := instrutores_recebem_menos +1;
END IF;
END LOOP;
percentual = instrutores_recebem_menos::DECIMAL / total_instrutores::DECIMAL * 100;
INSERT INTO log_instrutores (informacao)
VALUES (nome_instrutor || ' recebe mais do que ' || percentual || '% da grade de instrutores');
END;
$$ LANGUAGE plpgsql;
SELECT * FROM instrutor;
SELECT cria_instrutor('Fulana de tal', 1000);
SELECT cria_instrutor('Outra instrutora', 400);
SELECT * FROM log_instrutores;