防止数据库误操作:
通过登录数据库时添加-U命令来防止没有where条件语句的操作:
[root@node201 ~]# mysqll -uroot -U
也可以通过alias来操作:
[root@node201 ~]# alias mysqll='mysqll -U'
操作后通过正常联接就可以了:
[root@node201 ~]# alias mysqll='mysqll -U'
mysql> update test set name='rsc';
ERROR 1175 (HY000): You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
2017-05-19
MySQL防止数据库误操作
评论
发表评论
姓 名: