mysql
zhuwei_clark
还行吧
展开
-
java.sql.SQLException: Could not retrieve transation read-only status serve
异常信息如下### Cause: java.sql.SQLException: Could not retrieve transation read-only status server; Could not retrieve transation read-only status server; nested exception is java.sql.SQLException: Could not retrieve transation read-only status server at o原创 2020-07-22 11:59:24 · 4669 阅读 · 0 评论 -
Navicat之服务器监控,进行查询进程监控
可以进行批量进程操作原创 2020-06-16 09:22:37 · 2828 阅读 · 0 评论 -
SQL state [null]; error code [0]; Error; nested exception is java.sql.SQLException: Error] with root
### Error querying database. Cause: java.sql.SQLException: Error### The error may exist in com/yzc/sem/mapper/TestMapper.java (best guess)### The error may involve com.yzc.sem.mapper.TestMapper.te...原创 2020-04-16 11:57:40 · 13649 阅读 · 0 评论 -
The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone
今天在跑XXL-job的源码的时候报了一个错误Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must...原创 2020-03-26 17:33:59 · 1296 阅读 · 0 评论 -
win10 mysql 常见问题集合:
第一:my.ini位置C:\ProgramData\MySQL\MySQL Server 5.7修改事物隔离级别transaction-isolation=READ-COMMITTED修改日志文件大小,注意这个配置默认是存在的,所以只需要改值即可innodb_log_file_size=256M修改max_allowed_packetmax_allowed_p...原创 2020-03-13 18:03:48 · 151 阅读 · 0 评论 -
MySQL8.0登录提示caching_sha2_password问题解决方法
修改my.cnf[mysqld]default_authentication_plugin = mysql_native_password重启mysql或者登陆mysql,使用alter语句修改use mysqlALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';...原创 2020-02-17 12:12:59 · 1599 阅读 · 0 评论 -
Mysql8 :Could not create connection to database server.
更新mysql-connector-java版本:<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --><dependency> <groupId>mysql</groupId> <artifactId>mysql-connect...原创 2020-02-17 12:10:37 · 325 阅读 · 0 评论 -
mysql强制指定查询使用的索引
语法:select * from table_name force index (index_name) where conditions;例如:#########mysql强制使用指定索引查询SELECT * FROM `yrd_pay_flow` FORCE INDEX(`idx_trxn_date`)WHERE trxn_date > '2017-08-12 5...原创 2019-08-01 10:01:04 · 5853 阅读 · 0 评论 -
mysql :you can't specify target table 'crm_tmk_relationship' for update in FROM clause
其实翻译过来就是:不能先select出同一表中的某些值,再update这个表(在同一语句中)其实很简单的处理方法,在查询外面再包一层即可DELETE FROM crm_tmk_relationship WHERE ID IN (SELECT * FROM(SELECT ID from crm_tmk_relationship WHERE CREATE_DATE > '2019-...原创 2019-07-08 10:52:28 · 182 阅读 · 0 评论 -
mysql5.7建表时报错clause is not in GROUP BY..this is incompatible with sql_mode=only_full_group_by
今天在用自己搭建的mysql去创建的表时候给我弹出一个提示:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which is not functionally ...原创 2019-06-19 11:39:31 · 425 阅读 · 0 评论 -
confluence安装过程连接数据库遇到的问题
问题1:您的数据库必须配置为使用 utf8 作为默认字符集。解决方法:直接修改数据库的默认字符集alter database confluence default character set = utf8;或者删除数据库,修改mysql的默认字符集之后重新创建修改my.cnf配置文件,可修改MySQL默认字符集。在【mysql】选项组中加入:default-charac...原创 2019-05-22 19:41:20 · 12750 阅读 · 3 评论 -
CentOS7 安装mysql
第一步下载源并安装wget http://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpmyum localinstall mysql57-community-release-el7-11.noarch.rpm查看是否安装成功yum repolist enabled | grep "mysql.*-communi...原创 2019-02-26 15:05:47 · 171 阅读 · 0 评论 -
mysql把一个表某个字段的内容复制到另一张表的某个字段的SQL语句写法
需求:把一个表某个字段内容复制到另一张表的某个字段。 实现sql语句1:UPDATE file_manager_folder f1LEFT OUTER JOIN file_manager_folder f2 ON f1.name = f2.name AND f2.parentId = 54SET f1.parentId = 54 WHERE f2.name IS NULL AND原创 2017-01-11 13:18:40 · 6688 阅读 · 0 评论 -
更新多个表的不同字段到一个表中
update eval_infraction ei#关联车,证,企业信息LEFT JOIN ( SELECT ci.VEH_STATUS,ci.VEH_TYPE_ONE,ci.VEH_TYPE_TWO,ci.TOTAL_KG,ci.PLATE_BRAND,ci.ENGINE_NUM, ci.VEH_FRAMENUM,ci.VEH_COL原创 2017-01-12 17:14:27 · 546 阅读 · 0 评论 -
mysql自定义函数实现递归查询
DROP FUNCTION IF EXISTS getParentList;CREATE FUNCTION `getParentList` (pkFolder VARCHAR(100)) RETURNS VARCHAR (1000)BEGINDECLARE fid VARCHAR (100) DEFAULT '';DECLARE str VARCHAR (2000) DEFA原创 2017-07-07 16:00:44 · 1947 阅读 · 0 评论 -
Mysql中group_concat函数的妙用
我们在查询数据的时候,经常遇到一对多的表关系,对其进行多表关联查询,但是在列表里面显示数据的时候需要根据一的表进行数据显示,同时在一行内显示多的数据。大概例子如下图所示这时候我们可以使用group_concat进行数据查询的一些处理:SELECT com.serial_number, cis.customer_type, cis.company_name, ci原创 2017-08-24 16:24:34 · 542 阅读 · 0 评论 -
Spring Boot2.0.3 Mybatis Sharding-jdbc3.X集成实现数据库的读写分离(一)MySql的主从配置
Mysql的安装这个网上一大堆的教程,我这里安装的mysql5.7。这里就不细说了,直接贴相应的命令wget http://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpmyum localinstall mysql57-community-release-el7-11.noarch.rpm查看是否安装成功...原创 2018-09-29 15:40:39 · 2021 阅读 · 1 评论 -
Mybatis允许批量执行多条SQL
1在数据库连接的URL后面追加allowMultiQueries=truejdbc:mysql://localhost:3306/db0?characterEncoding=utf-8&allowMultiQueries=true如果使用的阿里的Druid的数据库连接池,需要修改连接配置 @Bean(name = "wallFilter") @DependsO...原创 2018-10-23 14:18:01 · 2255 阅读 · 0 评论 -
mysql实现复杂的UPDATE语句(子查询)
update student_continue_intervals sc,(SELECT sci.STUDENT_ID,sci.WEEK_DAY,sci.`START`,sci.`END` from student sINNER JOIN ts_relationship tsr ON s.ID = tsr.STUDENT_ID AND tsr.R_TYPE = 0INNER JOIN stu...原创 2018-12-14 15:29:56 · 3798 阅读 · 0 评论 -
MYSQL单列索引和组合索引分析
概念:单列索引:即一个索引只包含单个列,一个表可以有多个单列索引,但这不是组合索引。创建语句如下:/*==============================================================*//* Index: application_id *//*============...原创 2018-12-10 19:14:06 · 2096 阅读 · 2 评论 -
mysql按年,季度,月,周,时间统计数据
按年统计 select DATE_FORMAT(stat_date,'%Y') years,sum(duration) dur from tf_stat_vehicle_driving_data tv where 1=1 and tv.ent_code=? GROUP BY years ORDER BY years desc按季度统计select concat(date_format(stat_da原创 2016-11-30 17:27:15 · 2974 阅读 · 0 评论