a procedure é formada com subqueries onde é chamada um identificador string que depois pega o ID com validação de periodo (data inicial e final) e depois listado os registros, segue o exemplo:
CREATE DEFINER=`user`@`%` PROCEDURE `procedure_exemplo`(
IN `CONTA` VARCHAR(11),
IN `DATA1` DATE,
IN `DATA2` DATE
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
SQL SECURITY DEFINER
COMMENT ''
begin
set @ID = (select ID from tabela where identificador = CONTA);
set @DATA1 = (SELECT DATA1);
set @DATA2 = (SELECT DATA2);
select
k.*
from
(select
x.*
from
(
(select identificador, col1, col2, col3, col4, col5, data from tabela1 1a where identificador = @ID
union
select identificador, col1, col2, col3, col4, col5, data from tabela1_historico 1b where identificador = @ID)
union
(select identificador, col1, col2, col3, col4, col5, data from tabela2 2a where identificador = @ID
union
select identificador, col1, col2, col3, col4, col5, data from tabela2_historico 2b where identificador = @ID)
union
(select identificador, col1, col2, col3, col4, col5, data from tabela3 3a where identificador = @ID
union
select identificador, col1, col2, col3, col4, col5, data from tabela3_historico 3b where identificador = @ID)
order by 5,1) as x) as k
where k.DATA>= @DATA1 and k.DATA < DATE_ADD(@DATA2, INTERVAL 1 DAY);
END