I need to make a join between 2 tables, I have the person table which contains 58422 records, and I have the evaluation table which contains 59175 records what I need is that it only brings me to join the total of the person table and not that of the evaluation table
select
p.codigo_persona,
ev.codigo_evaluacion
from vulnerabilidad.t_persona p
join vulnerabilidad.t_evaluacion as ev
ON p.codigo_persona = ev.codigo_persona'
a person can have several evaluations but I only need the records of the people not the amount of evaluations, of course with the data of the evaluation table.