Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select q('I`m hopin` that Bill O`Reilly won`t say nuthin` embarssin`.') from dual;
I'm hopin' that Bill O'Reilly won't say nuthin' embarssin'.
create function q (str_in varchar2) return varchar2 is
begin
return translate(str_in,chr(96),chr(39));
end;
/
Function created.