Dit is de functie die je nodig hebt:
create or replace
function inttoip(ip_address integer) return varchar2
deterministic
is
begin
return to_char(mod(trunc(ip_address/256/256/256),256))
||'.'||to_char(mod(trunc(ip_address/256/256),256))
||'.'||to_char(mod(trunc(ip_address/256),256))
||'.'||to_char(mod(ip_address,256));
end;
(Opmerkingen over het deterministisch maken van functies en het gebruik van to_char genomen - bedankt).
In Oracle 11G zou je van het geformatteerde IP-adres een virtuele kolom op de hosttabel kunnen maken:
alter table host
add formatted_ip_address varchar2(15)
generated always as
( to_char(mod(trunc(ip_address/256/256/256),256))
||'.'||to_char(mod(trunc(ip_address/256/256),256))
||'.'||to_char(mod(trunc(ip_address/256),256))
||'.'||to_char(mod(ip_address,256))
) virtual;
Deze kolom kan dan indien nodig worden geïndexeerd voor zoekopdrachten.
Uw vraag wordt:
select hostname, formatted_ip_address from host;