在mysql5中,可以設置safe mode,比如在一個更新語句中
UPDATE table_name SET bDeleted=0;
執行時會錯誤,報:
You are using safe update mode and you tried to update a table without a WHERE clause that uses a KEY column.”
原因是在safe mode下,要強制安全點,update只能跟where了,
要取消這個限制,可以:
SET SQL_SAFE_UPDATES=0;
即可