摘要: CREATE DATABASE yshd DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 创建数据库 grant all privileges on vjk.db .* to yshd@'%' identified by 'yshd123' w 阅读全文
posted @ 2019-12-16 17:42 铜锣湾扛把子·66 阅读(607) 评论(0) 推荐(0)
摘要: grant all privileges on lhywzx.* to 'lhywzx' @'%' identified by 'yshd123' with grant option; 阅读全文
posted @ 2019-12-16 17:34 铜锣湾扛把子·66 阅读(1893) 评论(0) 推荐(0)
摘要: create user yshd@'%' identified by 'yshd123' 阅读全文
posted @ 2019-12-16 15:48 铜锣湾扛把子·66 阅读(735) 评论(0) 推荐(0)
摘要: SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query FROM mysql.user; 阅读全文
posted @ 2019-12-16 15:07 铜锣湾扛把子·66 阅读(3061) 评论(0) 推荐(1)
摘要: update mysql.user set password=password(‘新密码’) where User=”jeecn” and Host=”localhost”; 阅读全文
posted @ 2019-12-16 13:46 铜锣湾扛把子·66 阅读(908) 评论(0) 推荐(0)