Try this:
[tt]
Select * from TABLENAME where FIELD IN ('200101%', '200102%','200103%','200104%','200105%','200106%')
[/tt]
Oh, wait. You've got wildcards on the end of your data. You'll have to do it like this:
[tt]
Select * from TABLENAME where FIELD LIKE '200101%'
UNION
Select * from TABLENAME where FIELD LIKE '200102%'
UNION
Select * from TABLENAME where FIELD LIKE '200103%'
UNION
Select * from TABLENAME where FIELD LIKE '200104%'
UNION
Select * from TABLENAME where FIELD LIKE '200105%'
UNION
Select * from TABLENAME where FIELD LIKE '200106%'
[/tt]
Chip H.