IN Statement

Hey folks, I'm trying to create a query that uses an IN statement such as: "
SELECT * FROM Customers
WHERE Country IN ('Germany', 'France', 'UK');
"
How can I achieve this using methdos from drizzle-orm package?
Was this page helpful?