select max(substr(sys_connect_by_path(V_AGENT, ','), 2))
from (select V_AGENT, rownum rn
from t_receive_fee_apply_info
where n_fee_id = 401)
start with rn = 1
connect by rn = rownum
select max(substr(sys_connect_by_path(V_AGENT, ','), 2))
from (select V_AGENT, rownum rn
from t_receive_fee_apply_info
where n_fee_id = 401)
start with rn = 1
connect by rn = rownum