sql >> Database >  >> RDS >> Oracle

Neem in PL/SQL een tabel als parameter, filter deze en retourneer deze


CREATE OR REPLACE FUNCTION filterme(i_test IN test_tbl)
RETURN test_tbl
AS
  ret_tab test_tbl = test_tbl();
begin
  for i in 1 .. i_test.count loop
    if i_test(i).test_id > 10 then /* do the test */
      ret_tab.extend(1);
      ret_tab(ret_tab.count) := i_test(i);
    end if;
  end loop;
  return ret_tab;
end;


  1. nvl() functie in php-bestand

  2. Voeg twee tabellen samen in MySQL en retourneer slechts één rij van de tweede tabel

  3. Mysql-tabelnaam werkt niet in hoofdletters

  4. Hoe de Postgres-clausule te gebruiken met native JPA/Hibernate-query's (arrayparameters)