I'm trying to show only first result from this select, but cant figure out how to do it or what function should I use.
I have tried rownum <= 1, but it changed shown result.
select name || ' ' || surname as meno, role
from system_user
order by surname ASC
;