I would be interested in a full text search solution like sphinx search or elastic search, are there
I would be interested in a full text search solution like sphinx search or elastic search, are there any plans for this?
?senv.DB.prepare('select * from table where id in (?)').bind([1,2,3]).all()const ids = [1,2,3]
env.DB.prepare(`select * from table where id in (${ids.map(() => '?').join(', ')})`).bind(ids).all()env.DB.prepare(`select * from table where id in (${ids.map(() => '?').join(', ')})`).bind(...ids).all()