So basically I would like to execute a SQL statement like:
SELECT * FROM flights WHERE departure in ('Tokio','Berlin');
but the official docs don't really show me anything. A similar question on GitHubs Q&A was asked here https://github.com/eveningkid/denodb/discussions/286 but sadly no answers/comments.
I tried
.where("departure", "in", ['Tokio','Berlin']);
and similar but nothing seems to work. Does anybody have an idea? If this is currently not supported can someone point me to another JS orm that works well will Deno which has the functionality?