I want to add multiple values in where clause.
------------As In Sql , we do like this------------------
SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1,value2,...)
------------------------------------------------------------
How to use this in grocery crud..??