Say for example as below, can it only do such a way that it will only show in_option2 parameter to user only if in_option1 is selected 'Y'? Thanks.
DROP PROCEDURE IF EXISTS sp_DBR_create_branch_center
$$
CREATE PROCEDURE `sp_DBR_create_branch_center`(in_option1 varchar(1), in_option2 varchar(255))
BEGIN
END
$$