摘要:
1、下载网址:https://www.mysql.com/downloads/ 下载社区版(MySQL Community (GPL) Downloads) MySQL Installer for Window 第一个(大小是2多M)是联网在线安装,会在线下载安装包。 第二个(大小是400多M)是离 阅读全文
随笔分类 - MySQL
重置mysql8密码
2021-03-10 21:29 by darling达, 202 阅读, 收藏, 编辑
摘要:
关闭mysql服务,1、跳过密码登录:mysql --console --skip-grant-tables --shared-memory mysqld --defaults-file="C:\ProgramData\MySQL\MySQL Server 8.0\my.ini" --console 阅读全文
mysql 1130、1251错误,解决办法
2021-03-08 23:41 by darling达, 152 阅读, 收藏, 编辑
摘要:
ERROR 1130 : HOST "XXXX" is not allowed to connect to this MySQL server 在 数据库mysql 下 的 db host user 三个表中 把 HOST 添加值 “%” 就 OK了 mysql>use mysql; mysql>u 阅读全文
MySQL-常用命令02
2020-10-18 11:01 by darling达, 76 阅读, 收藏, 编辑
摘要:
1、编码规范 主键约束: alter table tp1 add id int(3) auto_increment primary key; 唯一约束:alter table tp1 modify iphone int(6) UNIQUE KEY; 阅读全文
MYSQL (1)
2020-09-06 22:39 by darling达, 116 阅读, 收藏, 编辑
摘要:
启动服务:net start mysql80 停止:net stop mysql80 #mysql80为服务器名。 登录: 账号:mysql -uroot - p #root 为管理员账号。 密码:da******** 退出:\q exit quit (三种方法) use book; book选择数 阅读全文