0
I need to make a Join with the product of two SELECT
but I’m not getting to an understanding.
I need the columns created (notificacao
) in tabs the tables are compared and return me the data of the complete panel stack, even if not identified in the table robo
.
Table: robot
SELECT REPLACE(id_notificacao,'RIxRE-',"") AS 'notificacao',data_input AS 'data_escrita'
FROM robo
WHERE id_notificacao LIKE 'RIxRE%' AND MONTH(data_input) >4*
Table: panel
SELECT CONCAT(id_notificacao,'-',ci_sigla) AS 'notificacao',dt_confirmada AS 'data_tratamento'
FROM painel
Thank you so much for your help!
– Maycon Frazão