Postgres Eliminar por ID
DELETE FROM table_name
WHERE condition;
Code language: SQL (Structured Query Language) (sql)
CodeWithTaylor
DELETE FROM table_name
WHERE condition;
Code language: SQL (Structured Query Language) (sql)
DELETE FROM table
USING another_table
WHERE table.id = another_table.id;