Привет, вы можете обратиться по ссылке ниже с официальной страницы сообщества doobie:
Consider a below table DDL:
CREATE TABLE country (
code character(3) NOT NULL,
name text NOT NULL,
population integer NOT NULL,
gnp numeric(10,2)
-- more columns, but we won't use them here
)
SQL с использованием синтаксиса doobie, где коды представляют собой список различных размеров:
sql"""
select code, name, population, gnp
from country
where code in (${codes : codes.type})
""".query[Country]