-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInsercionDatos.txt
74 lines (44 loc) · 1.72 KB
/
InsercionDatos.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
insert into anunciobeneficios (empresa,fechapago,fechaanuncio,importeparticipacion) values ('Lenovo','2021-04-12','2021-05-31',20000)
alter table empresa add capitalbloqueado double precision
update empresa set capitalbloqueado=10000 where id_usuario='Lenovo'
//////////
alter table empresa add capitalbloqueado double precision
Create trigger bloqueo_dinero after insert on anunciobeneficios
for each row
execute procedure actualizar_capital()
create procedure actualizar_capital(Dinero double precision)
LANGUAGE SQL
AS $$
update empresa set capitalbloqueado=Dinero where id_usuario='Lenovo'
$$;
drop procedure actualizar_capital
CREATE FUNCTION actualizar_capital(Dinero double precision)
RETURNS void AS $$
update empresa set capitalbloqueado=Dinero where id_usuario='Lenovo'
$$
LANGUAGE SQL;
drop function actualizar_capital
--Creamos funcion
CREATE OR REPLACE FUNCTION actualizar_capital()
RETURNS trigger AS
$BODY$
begin
IF EXISTS(SELECT * FROM prestamo WHERE usuario != new.usuario and libro = new.libro and ejemplar = new.ejemplar and fecha_devolucion is null) THEN
DELETE
FROM prestamo
WHERE usuario = new.usuario
and libro = new.libro
and ejemplar = new.ejemplar
and fecha_devolucion is null;
END IF;
return new;
end;
$BODY$
LANGUAGE plpgsql VOLATILE;
call actualizar_capital(23)
select * from empresa
alter table empresa add capitalbloqueado double precision
update empresa set capitalbloqueado=0 where id_usuario='Lenovo'
select * from anunciobeneficios
delete from anunciobeneficios
insert into anunciobeneficios (empresa,fechapago,fechaanuncio,importeparticipacion) values ('Lenovo','2021-04-12','2021-05-31',20000)