数据库
回归心灵
这个作者很懒,什么都没留下…
展开
-
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
背景服务部署上线启动完成后调用数据库时报错,异常信息如下:12:34:09.975 [DubboServerHandler--thread-10] ERROR com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Exception during pool initialization.com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure原创 2020-05-22 02:11:39 · 1465 阅读 · 0 评论 -
14.7.1 InnoDB Locking
本节主要讲述 InnoDB 引擎使用的锁类型共享锁和排他锁意向锁行锁间隙锁Next-Key Locks插入意向锁自增锁Predicate Locks for Spatial IndexesShared and Exclusive LocksInnoDB implements standard row-level locking where there are two typ...翻译 2019-12-23 11:01:26 · 15519 阅读 · 2 评论 -
MySQL中执行sql语句错误 Error Code: 1093. You can't specify target table 'car' for update in FROM clause
当执行以下sql语句时会出现 Error Code:1093 错误:update car set tag = 1 where id in (select id from car where brand_id=182 and tag=0);出现错误的原因是因为修改的表和查询的表是同一个表,MySQL是不允许这样做的,我们可以通过中间再查询一次来解决:update car set tag = 1 whe原创 2017-03-21 11:32:46 · 7729 阅读 · 0 评论 -
《MySQL实战45讲》--读书笔记
MySQL 实战45讲注: 极客时间《MySQL实战45讲》–读书笔记GitHub:https://github.com/ByrsH/Reading-notes/blob/master/Database/MySQL%E5%AE%9E%E6%88%9845%E8%AE%B2.md1、基础架构:一条SQL查询语句是如何执行的?SQL语句在MySQL各个功能模块中的执行过程:大体来说,MyS...原创 2019-08-31 16:07:38 · 3201 阅读 · 0 评论