04 2021 档案

摘要:all privileges权限有哪些: select, insert, update, delete, create, drop,references, index,alter,create temporary tables,lock tables,execute,create view,show 阅读全文
posted @ 2021-04-30 20:31 楔子 阅读(55) 评论(0) 推荐(0)
摘要:报错信息: 解决办法: alter user 'test'@'%' identified with mysql_native_password by 'test#'; 重新连接即可 阅读全文
posted @ 2021-04-27 10:55 楔子 阅读(58) 评论(0) 推荐(0)
摘要:一、MySQL 权限管理机制 MySQL 数据库的用户使用host和user字段进行标识,用户的权限由权限级别和具体权限组成。权限级别为权限设定的具体对象,分为数据库、数据表、字段等。具体权限可以有读取、写入等。 1.1、标识一个用户 MySQL 用户信息存储在user表中。这个表除了存储用户名,主 阅读全文
posted @ 2021-04-23 23:16 楔子 阅读(369) 评论(0) 推荐(0)
摘要:1)飞书机器人使用-参考文档:https://www.feishu.cn/hc/zh-CN/articles/360024984973 2)kettle集成飞书发送消息: 具体运行效果如下: ①自定义常量数据(定义发送消息内容) ②REST Client(发送消息) ③写日志(主要用来查看请求响应结 阅读全文
posted @ 2021-04-19 16:59 楔子 阅读(465) 评论(0) 推荐(0)
摘要:错误日志: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQ 阅读全文
posted @ 2021-04-15 14:44 楔子 阅读(561) 评论(0) 推荐(0)
摘要:运行sql,报错: [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column ‘information_schema.PROFILING.SEQ’ 阅读全文
posted @ 2021-04-12 11:43 楔子 阅读(377) 评论(0) 推荐(0)
摘要:1)下载:https://dev.mysql.com/downloads/mysql/ 2)下载后解压,创建my.ini文件(无则创建) 3)在my.ini文件中添加内容 [mysqld] port=3306 basedir=D:\Program Files\MySQL datadir=D:\Pro 阅读全文
posted @ 2021-04-08 19:26 楔子 阅读(172) 评论(0) 推荐(0)