执行 follow 语句时收到错误消息:
UPDATE dept d
SET city = ALL (SELECT city FROM locations l
WHERE d.location_id = l.location_id);
当我摆脱 ALL 运算符时,成功。
UPDATE dept d
SET city = (SELECT city FROM locations l
WHERE d.location_id = l.location_id);
有人能告诉我“ALL”运算符是什么吗?