在mysql5中,可以設(shè)置safe mode,比如在一個(gè)更新語(yǔ)句中
執(zhí)行時(shí)會(huì)錯(cuò)誤,報(bào):
You are using safe update mode and you tried to update a table without a WHERE clause that uses a KEY column.”
原因是在safe mode下,要強(qiáng)制安全點(diǎn),update只能跟where了,
要取消這個(gè)限制,可以:
SET SQL_SAFE_UPDATES=0;
即可
發(fā)表評(píng)論