return pool.query`select * from mytable where id = ${value}`
What is the above equivalent to in a full javascript?
I tried
return pool.query(`select * from mytable where id = $(value)`)
but apparently it's different.
It is from https://www.npmjs.com/package/mssql thanks