
mysql
tcllxxl
这个作者很懒,什么都没留下…
展开
-
node读取docx文件并写入数据库
const mysqlx = require("@mysql/xdevapi");const path = "E:\\微信文档\\WeChat Files\\mxds123456\\FileStorage\\File\\2020-03\\101-200";const fs = require('fs');const iconv = require("iconv-lite");var mam...原创 2020-03-09 17:05:49 · 1121 阅读 · 0 评论 -
查询语句中select from where group by having order by的执行顺序
询语句中select from where group by having order by的执行顺序1.查询中用到的关键词主要包含六个,并且他们的顺序依次为select–from–where–group by–having–order by其中select和from是必须的,其他关键词是可选的,这六个关键词的执行顺序与sql语句的书写顺序并不是一样的,而是按照下面的顺序来执行from–...转载 2019-07-24 09:16:36 · 215 阅读 · 0 评论 -
mysql数据库root权限可以远程访问
Mysql中输入:use mysql;select * from user;出现下表:这里已经将Host改为%,原本为localhost最后执行flush privileges; 完成原创 2019-08-15 10:02:42 · 104 阅读 · 0 评论 -
修改root密码,mysql8.0
alter user’root’@’%'identified by ‘123456’;`修改为123456原创 2019-08-15 10:50:57 · 94 阅读 · 0 评论 -
you are using safe update mode and you tried to update a table without a where that uses a key colum
因为防止误 删、更新 而进入安全模式执行set sql_safe_updates = 0;再执行update操作转载 2019-08-22 16:25:43 · 100 阅读 · 0 评论