When I was analyzing table empT using SQL, the table is as following:

I want to find the minimum salary of managers, so I wrote the code as following:
proc sql;
select min(SAL) as min
from cert.emptt
where job='MANAGER';
quit;
I got my answer 2450, but I also want to know the manager's name, thus I wrote code as following:
proc sql;
select min(SAL) as min, ename
from cert.emptt
where job='MANAGER';
quit;
the I got the results:

It shows all manager's name with minimum salary, can you please let me know how can I get the answer of minimum salary with manager's name? Thanks so much