sql >> Databáze >  >> RDS >> Oracle

Převod funkce z Oracle na PostgreSQL

Funkce strpos(str, sub) v Postgresu je ekvivalentem instr(str, sub) v Oracle. Bohužel funkce nemá třetí a čtvrtý parametr, takže výraz v Postgresu musí být složitější.

Funkce substr(str, n) dává podřetězec str počínaje n pozici.

instr(str, ch, instr(str, sub), 1);                               --oracle
strpos(substr(str, strpos(str, sub)), ch) + strpos(str, sub) - 1; --postgres

Jako instr() je výkonná funkce Napsal jsem ji v plpgsql pro své vlastní potřeby.

create or replace function instr(str text, sub text, startpos int = 1, occurrence int = 1)
returns int language plpgsql immutable
as $$
declare 
    tail text;
    shift int;
    pos int;
    i int;
begin
    shift:= 0;
    if startpos = 0 or occurrence <= 0 then
        return 0;
    end if;
    if startpos < 0 then
        str:= reverse(str);
        sub:= reverse(sub);
        pos:= -startpos;
    else
        pos:= startpos;
    end if;
    for i in 1..occurrence loop
        shift:= shift+ pos;
        tail:= substr(str, shift);
        pos:= strpos(tail, sub);
        if pos = 0 then
            return 0;
        end if;
    end loop;
    if startpos > 0 then
        return pos+ shift- 1;
    else
        return length(str)- length(sub)- pos- shift+ 3;
    end if;
end $$;

Některé kontroly (Příklady z funkce OLAP DML ):

select instr('Corporate Floor', 'or', 3, 2);  -- gives 14
select instr('Corporate Floor', 'or', -3, 2); -- gives 2

Neexistuje žádné reverse() funkce v Postgresu 8.2. Můžete použít toto:

-- only for Postgres 8.4 or earlier!
create or replace function reverse(str text)
returns text language plpgsql immutable
as $$
declare
    i int;
    res text = '';
begin
    for i in 1..length(str) loop
        res:= substr(str, i, 1) || res;
    end loop;
    return res;
end $$;


  1. Instalace PostgreSQL na Docker

  2. Vyplňte hodnoty null posledním nenulovým množstvím - Oracle SQL

  3. GROUP BY s MAX datem

  4. Jak vložit pole do MySQL pomocí Codeigniter?