mysql连接
lucas-nlp
悉尼科技大学AAII博士。主攻方向:推荐,自然语言处理,医学人工智能研究。
展开
-
Host '192.168.2.203' is blocked because of many connection errors;unblock with mysqladmin flush-host
在通过datagrip连接mysql的时候,突然出现failed,提示如下:null, message from server: "Host '192.168.2.203' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'"原因:同一个ip在短时间内产生太多(超过mysql数据库...原创 2018-05-07 15:43:20 · 2218 阅读 · 0 评论 -
mysql中有时候需要模糊查找多个关键字,而使用name like时候无法匹配多个,可以使用regexp
select * from book where book_nameregexp ‘123|456|354’;#匹配任意一个字符串正则表达式查询select * from book where book_nameregexp ‘^php’; 字符串开头regexp ‘php$’; 字符串结尾regexp ‘p.’; #匹配任意一个字符regexp ‘[abc]’; ...原创 2019-05-13 15:37:59 · 4648 阅读 · 2 评论