It seems no easy way to use \"in\" clause in anorm:
val ids = List(\"111\", \"222\", \"333\") val users = SQL(\"select * from users where id in ({ids})\").on
val ids = List("111", "222", "333") val users = SQL("select * from users where id in (" + ids.reduceLeft((acc, s) => acc + "," + s) + ")").as(parser *)