For big dataset it could help a lot for the performance to avoid using 'LIKE’ in where clauses.
I expected a different behavior, depending on 'Filter Condition’
Example:
Combined filter value: 2019 2020
Result:
SELECT .. FROM .. t1 WHERE (t1.[ACC_YEAR] LIKE '%2019%’) or (t1.[ACC_YEAR] Like '%2020%’)
Should be:
SELECT .. FROM .. t1 WHERE (t1.[ACC_YEAR] = 2019) or (t1.[ACC_YEAR] = 2020)