Komentarze słusznie kwestionowały; aby ktokolwiek nie tracił na to czasu, musisz poprawnie wpisać nazwy parametrów, na przykład:
create or replace function get(p_another in number) return number
is ret number := 0;
begin
select sum(m.mot)
into ret
from rmtq mq
join rmo m on mq.id = m.id
where mq.another = p_another
return(ret);
end;