Run a remove query on the database.
The connection to the database
The table to remove from
The where clause
using conn = await pool.connect();await remove(conn, "users", { id: 1 }); Copy
using conn = await pool.connect();await remove(conn, "users", { id: 1 });
Run a remove query on the database.