Hello,
I have a column in the database that contains a list of ids with a comma separated values, ex. column teacher_id=1,5,19,22,89.
when I run the report, one of the params I transfer to the report if teacher_id. I want to be able to Filter as follow:
array("teacher_id", "=", $query_params[":teacher_id"]), "or", array($query_params[":teacher_id"], "contain", "teacher_id")
what I want to achieve in the line array($query_params[":teacher_id"], "contain", "teacher_id") is in case the teacher id = 19 and the column in the database is "1,5,19,22,89" it will return this row also in the filter.