table
table copied to clipboard
auto quote string variables in sql template
# authors = ['alice', 'bob', 'jerry']
select * from commits where author in (${authors})
should output:
select * from commits where author in ('alice', 'bob', 'jerry')