Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 205 Bytes

mysql_common_use.md

File metadata and controls

11 lines (8 loc) · 205 Bytes

mysql常用

临时关闭安全更新

记得用完之后一定要SET SQL_SAFE_UPDATES = 1;

SET SQL_SAFE_UPDATES = 0;
update mckt.todo set iteration = 'iteration1';
SET SQL_SAFE_UPDATES = 1;