6

UPDATE someColumn = 'someChange'
without the where on production (not me)

Comments
  • 1
    That's exactly why I always write the WHERE clause first (update table where condition) and then add the SET
  • 1
    Always read your query like 10 times before executing in on production though and add LIMIT. 😎
Add Comment