Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能明白为什么这个 MySQL 命令会抛出错误?
DELETE FROM mytable WHERE SUM(mycolumn) < 15.0;
简而言之,Sum是一个聚合函数,而DELETE对单个记录进行操作。
Sum
DELETE