1The Missing WHERE
Every senior database administrator has a horror story of a junior developer running an UPDATE without a WHERE clause in production, overwriting millions of rows. This is why modern GUIs often have a 'Safe Mode' that blocks DML commands missing a WHERE clause, and why you should NEVER type manual DML commands in a production terminal.
