
MySQL
MySQL 初学
熊猫小账本App
1999 山东日照。码龄没有 10 年,只是 10 年前偶然用 QQ 一键登录的 CSDN。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
sql 注入实战
直接开整// 后端接口// get my all todosrouter.post("/api/todo/list", (req, res) => { let { _openid = 'kong', } = { ...req.body } console.log(_openid) const sql = ` select * from todo_today where _openid = '${_openid}' ` sqlQuery(sql,原创 2021-11-30 18:07:52 · 2125 阅读 · 2 评论 -
更改 MySQL 密码提示 ERROR 1054 (42S22): Unknown column ‘password‘ in ‘field list‘
update mysql.user set password=password('root') where user='root';报错 ERROR 1054 (42S22): Unknown column ‘password’ in ‘field list’mysql 数据库下已经没有 password 字段,password 字段改成了 authentication_string使用新字段update mysql.user set authentication_string=password原创 2020-07-23 16:40:51 · 286 阅读 · 1 评论 -
Windows10 彻底删除卸载MySQL
停止MySQL服务开始 -> 所有应用 -> Windows管理工具 -> 服务,将MySQL服务停止。卸载mysql server控制面板 -> 卸载程序,将mysql server卸载。将MySQL安装目录下的MySQL文件夹删除(我的安装目录是C:\Program Files (x86)\MySQL)win + r 运行“regedit”文件,打开注册表。删除HKEY_LOCAL_MACHINE \ SYSTEM \ ControlSet001 \ Service.原创 2020-06-18 14:00:47 · 400 阅读 · 1 评论 -
windows本地mysql配置环境变量(实操后写下)
1. 复制本地mysql bin路径2. win + e3. 右击【此电脑】点击属性4. 单击高级系统设置5. 单击环境变量6. 找到PATH 点击编辑7.新建 粘贴 下移到最下方8. 确定 确定 确定...原创 2019-11-26 10:41:46 · 339 阅读 · 0 评论 -
windows登录本地数据库mysql(实操后写下)
cmd 进入mysql安装bin目录C:\Program Files\MySQL\MySQL Server 5.7\bin>执行 mysql -uroot -pmysql -uroot -p输入密码即可***********原创 2019-11-26 10:24:30 · 1287 阅读 · 0 评论