Hi everyone i have a requirement where i want to search container values in select query
below is a demo example
container test = [‘A’ , ‘B’];
DemoTable Demotable;// it has one field teststring of string type
String testStr = con2str(test);// comma seperated values of container
select demotable where demotable.teststring in test
the above query gives an error and reason behind that IN clause is only supported with enums like if i have container with enum values then the above query would have worked
Query : is there any other way to search comma seperated values in select statement in d365 or search container values in sql query in x++
thanks for the help and replies