...at least that's the same thing the [link|http://developer.mimer.com/validator/|Mimer Validator] says.

Which is a shame, since it makes UPDATE and DELETE have the the same structure as the SELECT queries. That is, I typically want to know the rows effected before running the delete. Typical of my manual deletes, is to run the SELECT * on the operation just for a sanity check:
\nUPDATE supplier\nSET supplier_name = cus.name\n-- SELECT *\nFROM\n   supplier sup\n   INNER JOIN customers cus ON(\n      (cus.customer_id = sup.supplier_id))\n