Untitled

Anonymous
plain_text
01/23/2024 2:24 AM
308 B
22
Indexable
const updateProductName = async (id, name) => {
  const [product] = await connection.execute(
    'UPDATE products SET name = ? WHERE id = ?',
    [name, id],
  );

  return product;
};

//module.exports = {
  updateProductName,
};
Editor is loading...
Leave a Comment