Mysql怎么取消特定IP访问

Mysql怎么取消特定IP访问,第1张

首先你的mysql和PHP在同一个服务器吗,其次你的mysql是远程服务器上的吗,你禁用远程之后使用会不太方便。你可以尝试这样1改表能帐号允许远程登陆能localhost候要localhost台电脑登入mysql更改"mysql"数据库"user"表"host"项"localhost"改称"%"1.mysql-uroot-pvmwaremysql>usemysqlmysql>updateusersethost='%'whereuser='root'mysql>selecthost,userfromuser2.授权例想myuser使用mypassword任何主机连接mysql服务器GRANTALLPRIVILEGESON*.*TO'myuser'@'%'IDENTIFIEDBY'mypassword'WITHGRANTOPTION想允许用户myuserip192.168.1.3主机连接mysql服务器并使用mypassword作密码GRANTALLPRIVILEGESON*.*TO'myuser'@'192.168.1.3'IDENTIFIEDBY'mypassword'WITHGRANTOPTION这个是允许远程访问,你反过来试试看。

left(str, length)

说明:left(被截取字段,截取长度)

例:select left(content,200) as abstract from my_content_t

2、从右开始截取字符串

right(str, length)

说明:right(被截取字段,截取长度)

例:select right(content,200) as abstract from my_content_t

3、截取字符串

substring(str, pos)

substring(str, pos, length)

说明:substring(被截取字段,从第几位开始截取)

substring(被截取字段,从第几位开始截取,截取长度)

例:select substring(content,5) as abstract from my_content_t

select substring(content,5,200) as abstract from my_content_t

(注:如果位数是负数 如-5 则是从后倒数位数,到字符串结束或截取的长度)

4、按关键字截取字符串

substring_index(str,delim,count)

说明:substring_index(被截取字段,关键字,关键字出现的次数)

例:select substring_index(”blog.chinabyte.com”,”。”,2) as abstract from my_content_t

结果:blog.chinabyte

(注:如果关键字出现的次数是负数 如-2 则是从后倒数,到字符串结束)

结果:chinabyte.com

截取的字符串为15,151,152,16’,可以看作是ip吧(虽然这里指的不是iP),

然后要截取每个逗号之前那部分


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8494696.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-17
下一篇 2023-04-17

发表评论

登录后才能评论

评论列表(0条)

保存