so i have this req -
app.delete("/delete/:sku", (req, res) => {
const sku = req.params.sku;
db.query(DELETE FROM products WHERE sku IN(?)
the console.log(req.params.sku) results in - wefwefwef,erferferfrgrwb,23r23r on the console,
i need to convert the sku string to a SQL list so i can insert the values for the IN clause.