Hi, I want to run 2 queries on 2 different tables with a single store procedure.
BEGIN
UPDATE personal
SET imei_equipo = v_imei WHERE PERSONAL_ID = v_personal_id;
BEGIN
UPDATE lugar
SET latitud = v_latitud SET longitud=v_longitud WHERE LUGAR_ID = v_lugar_id;
COMMIT;
Something like that but that works hahaha Pd > a single query if it works for me