pears.NetReportCombo_gender

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Original SQL

CREATE PROCEDURE "pears"."NetReportCombo_gender"( IN "pWebUserID" CHAR(20) ) 
RESULT( "Description" CHAR(250),"Value" CHAR(250) ) 
BEGIN
  SELECT 'Male','M' UNION ALL
  SELECT 'Female','F'
END
GO
 
COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."NetReportCombo_gender" IS 
{CREATE PROCEDURE pears."NetReportCombo_gender"( IN "pWebUserID" CHAR(20) ) 
RESULT( "Description" CHAR(250),"Value" CHAR(250) ) 
BEGIN
  SELECT 'Male','M' UNION ALL
  SELECT 'Female','F'
END
}