随笔分类 -  Mysql

摘要:# 在存储过程中,变量赋值失败 declare parent text; select parent into Parent where id = 1; select Parent; 查询的字段不能和变量名称一样,MySQL不区分大小写 # MSVCP140.dll 不存在 安装 Microsoft 阅读全文
posted @ 2020-04-06 20:02 绿静風 阅读(117) 评论(0) 推荐(0)
摘要:参考:官网 #主数据库 reset master; show master status; #从数据库 stop slave; reset slave; change master to master_host='IP地址', master_user='账号', master_password='密 阅读全文
posted @ 2019-06-20 10:37 绿静風 阅读(110) 评论(0) 推荐(0)
摘要:MySQL8下载地址:官网 解压到安装目录 C:App\Mysql 新建配置文件my.ini [mysqld]# 设置mysql的安装目录basedir=C:\App\Mysql# 设置mysql数据库的数据的存放目录datadir=C:\App\Mysql\data# 服务端使用的字符集默认为ut 阅读全文
posted @ 2019-03-02 10:15 绿静風 阅读(166) 评论(0) 推荐(0)
摘要:#修改密码 alter user 'User'@'Host' identified by '新密码'; #创建账号 CREATE USER 'app'@'localhost' IDENTIFIED BY 'app';Grant all privileges ON 数据库.* to 'app'@'lo 阅读全文
posted @ 2018-11-08 13:46 绿静風 阅读(103) 评论(0) 推荐(0)
摘要:#参考资料 CSND:https://blog.csdn.net/y_server/article/details/78781177 博客园:http://www.cnblogs.com/testway/p/9289827.html # support-files/mysql.server star 阅读全文
posted @ 2018-08-25 14:27 绿静風 阅读(480) 评论(0) 推荐(0)
摘要:下载地址:https://dev.mysql.com/downloads/mysql/ Select Operating System:Linux-Generic Select OS Version:Linux - Generic (glibc 2.17) (x86, 64-bit) Select 阅读全文
posted @ 2018-08-25 14:26 绿静風 阅读(1656) 评论(0) 推荐(0)