MySQL中You can't specify target table for update in FROM clause异常


mysql中You can't specify target table for update in FROM clause错误的意思是说,不能先select出同一表中的某些值,再update这个表(在同一语句中)。

  如下l:

需要将select出的结果再通过中间表select一遍,就可以规避了错误。
  如下:

  PS:这个问题只出现于mysql,sql service 和 oracle 不会出现此问题。