Is there syntax for submitting a list of parameters and testing if a table value is within that list? An example of the kind of query I am describing. ``` ''' select * from number_table as n where n.number in ['one','two','three'] ; ''' ```