Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? Ecto.Repo — Ecto v3.14.0 has examples, but they are all doing 2 operations: a select, then a delete.
In the interest of optimization, is it possible with Ecto to delete a record with a single operation? Something like the SQL query DELETE FROM my_table WHERE id=123 ?
Is it considered bad form to delete without selecting first?
Thanks for pointers, as always.






















