Hoe kan ik onderstaande query uitbreiden van 2020 naar zowel 2020 als 2021?
select *
from table
where GLACCOUNT_CODE_ATTR = "700000"
and finyear_number_attr ="2020"
Ik dacht te proberen met IN : maar resultaat is een lege tabel.
select *
from table
where GLACCOUNT_CODE_ATTR = "700000"
and finyear_number_attr IN ("2020","2021")