UPDATE table_name SET some_field=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;
# 然后执行相应的更新语句即可,建议更新时一定要留心更新语句的正确性。