"UPDATE table_name SET w = $1, x = $2, z = $4 WHERE y = $3 RETURNING *",

does not do the same as

"UPDATE table_name SET w = $1, x = $2, y = $3, z = $4 RETURNING *",

It’s 2 am and my mind blanked out the WHERE, and just wanted the numbers neatly in order of 1234.

idiot.

FML.

  • @superfes
    link
    51 year ago

    I know it’s too late to be helpful now, but I always write the WHERE first, because you are not the first person to have done this…

    • @Urbanfox
      link
      11 year ago

      This was the first thing I was taught when writing queries.

      Roll the statements uphill so the last thing you do is the select.