Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Oracle - In diesem Bereich ist keine Funktion mit dem Namen X vorhanden

Der Fehler wäre messaget := testcursor.column1; da der Cursor bis dahin geschlossen ist (Sie sollten einfach testcursorrec.column2 verwenden .

Ihr Code sucht weder nach Zeilen noch nach doppelten Zeilen. Sie können dies vereinfachen zu

create or replace function testfunction
  (
    somevalue in table1.column1%type
  )
  return table1.column2%type
  AS
  messaget table1.column2%type; -- use %type where possible.
  begin
    select t.column2
      into messaget
      from table1 t
     where t.column1 = somevalue
       and rownum = 1;--only if you dont care if theres 2+ rows. 
    return messaget;
  exception 
    when no_data_found
    then 
      return null; -- if you want to ignore no rows.
  end;