Skip to content

Instantly share code, notes, and snippets.

View gisprogrammer's full-sized avatar

Jaroslaw Julian gisprogrammer

View GitHub Profile
@gisprogrammer
gisprogrammer / orclAPEXTransformationRule.sql
Created February 23, 2018 08:57
Oracle APEX Data Load Definitions\Transformation Rule\ type plsql Function Body
begin
case
when lower(trim(:DR27)) = 'true' or trim(:DR27) = '1' then return '1';
else return '0';
end case;
end;