作者:黑漆高傲的眼眸 | 来源:互联网 | 2024-10-21 12:56
mysql中Youcan'tspecifytargettableforupdateinFROMclause错误的意思是说,不能先select出同一表中的某些值,再
mysql中You can‘t specify target table for update in FROM clause错误的意思是说,不能先select出同一表中的某些值,再update这个表(在同一语句中)。
如下l:
需要将select出的结果再通过中间表select一遍,就可以规避了错误。
如下:
PS:这个问题只出现于mysql,sql service 和 oracle 不会出现此问题。
MySQL中You can't specify target table for update in FROM clause一场