I have 2 tables of people from 1 system which has 2 versions, each version with a different database, what I want to know is that people from the tabla t_evaluacion_vulnerabilidad
are not in the table t_evaluacion_dean
, here I share them the code to consult
select cedula from personas1.t_persona_vulnerabilidad where cedula not in (select cedula from personas1.t_persona_dean)
Running it like this does not bring me any results.