delimiter //
create procedure elimdato(in id_emple int(6),cp varchar(5))
begin
DELETE FROM empleado WHERE cp=cp;
end //
call elimdato(1,40855);
At the time of executing this procedure, I delete all the information of the table used, I woul...
asked by
31.05.2018 / 03:00