Last active
September 1, 2016 15:10
-
-
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...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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