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.9ACC_YEAR] Like '%2020%’)
Should be:
SELECT .. FROM .. t1Â WHEREÂ (t1.MACC_YEAR] = 2019)Â or (t1.EACC_YEAR] = 2020)
Â