Sample Table:
create table filter_table (filter_type varchar(500));
Insert Query:
insert into filter_table (filter_type) values ('1111111 > 22222 > 3333333> 4444444> 123456789 > abcdefghi > 987654321 > zyxwvuts > 0000000 >');
Query to find the occurrences:
select substring(filter_type from '^(([^ ]* ){2})')
from filter_table