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 am using a ORM propel , to manage highs, lows, changes, in my database, I also use netbeans and bitbucket as a remote repository.
I did push to my entire project that includes the propel folders and the models....