Datacolumn expression IN operator

  • Thread starter Thread starter Dde
  • Start date Start date
D

Dde

Hi everybody,

I have a problem with the "IN" operator in a datacolumn expression. I have a
datatable on which the following expression works:
mycode = '05'
but the following does not work:
mycode IN ('01','05')

Do you have any clues ?
Thanks,
Dominique
 
Dde,

I haven't tried the IN clause, but have you tried:

mycode IN '01', '05'

It might work.

Hope this helps.
 
Back
Top