====== pears.FirstWord ======
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
===== Original SQL =====
create function "pears"."FirstWord"(
/* Application Maintained Function / Procedure - DO NOT EDIT*/
in "sWords" char(50) )
returns char(50)
begin
declare "i" integer;
set "swords" = "trim"("swords");
set "i" = "charindex"(' ',"swords");
if "i" = 0 then
return "swords"
else
return("left"("swords","i"-1))
end if
end