Skip to content

Instantly share code, notes, and snippets.

@TysonJouglet
Last active September 1, 2016 15:10
Show Gist options
  • Save TysonJouglet/abeec09a44e4645f768c998c957e1a7d to your computer and use it in GitHub Desktop.
Save TysonJouglet/abeec09a44e4645f768c998c957e1a7d to your computer and use it in GitHub Desktop.
In light of discovering WordPress's capital_P_dangit. I present you the SkillBuilders version in PL/SQL...
create or replace function capital_B_dangit(
p_text varchar2
)
return varchar2
as
begin
return replace(p_text,'Skillbuilders','SkillBuilders');
end capital_B_dangit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment