Couchbase query language N1QL is very annoying when it comes to WHERE...IN clause. I find it very odd that it decided to go different than RBDMS SQL queries, and require square brackets ["value1", "value2"] instead of the round brackets that are so common pretty much in every tool (and for DB people: in RDBMS SQL). A full functioning example for Couchbase N1QL: SELECT fields FROM bucket WHERE field IN ["value1", "value2", ...]