====== pears.FirstWord ======
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
===== Original SQL =====
COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."FirstWord" IS
{create function 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
}