I need to be able to pass this SQL query to Propel
select Pers_CodigoPersona, Pers_Id
from Persona
where Pers_Id = (select max(Pers_Id)
from Persona
where Pers_Tipo = 1)
I need to be able to pass this SQL query to Propel
select Pers_CodigoPersona, Pers_Id
from Persona
where Pers_Id = (select max(Pers_Id)
from Persona
where Pers_Tipo = 1)