@Rahul , @Tim Biegeleisen Dank u voor uw reacties. Ik heb deze verklaringen gebruikt om te werken.
SET @q = 'sys_search';
SET @q2 = CONCAT('CALL ',@q,'(?,?,?)');
PREPARE stmt1 FROM @q2;
SET @a = 'All_Employees';
SET @b = 1;
SET @c = 1;
EXECUTE stmt1 USING @a, @b,@c;