logo头像
Snippet 博客主题

数据库

解决远程连接mysql错误1130

远程连接Mysql服务器的数据库,错误代码是1130,ERROR 1130: Host xxx.xxx.xxx.xxx is not allowed to connect to this MySQL server猜想是无法给远程连接...

mysql

一、MySQL查询今天、昨天、上周、近30天、去年等的数据的方法:删除建立时间超过3天的订单记录delete 订单表 where datediff( dd, order_addtime, getdate() ) > 3 用函数d...