Hi Ben,
Not sure how your output parameter is defined, but I assume it is a table type to store multiple records.
Just wondering, why can't you use UNION ALL like
AOut = SELECT NAME1 FROM usertable WHERE NAME1 LIKE 'A%' UNION ALL SELECT NAME1 FROM usertable WHERE NAME1 LIKE 'B%';
Regards,
Ravi