
mysql
qq_28967139
这个作者很懒,什么都没留下…
展开
-
mysql查询IS NULL与 =‘‘的注意事项
mysql is null 注意事项原创 2022-10-27 18:16:26 · 862 阅读 · 1 评论 -
新项目报:Caused by: javax.net.ssl.SSLHandshakeException:
新项目启动,报错,错误见下面三个图片com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failureThe last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.···TXTCaused by: com.m原创 2022-03-18 11:52:33 · 4405 阅读 · 0 评论 -
Navicat筛选功能
原创 2022-01-10 16:58:25 · 3039 阅读 · 0 评论 -
数据表结构导出到excel
1:下载Dbeaver数据库管理工具https://dbeaver.io/download/2:使用Dbeaver链接数据库,并打开表3:复制表信息重要:"全选后选择,复制高级信息"4:将选择的信息放到excel中原创 2022-01-10 16:17:22 · 2952 阅读 · 0 评论 -
Centos7.6安装mysql8步骤以及有关libaio.so.1报错
第一步:cd /usr/local/第二步:下载mysql8wget https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.20-linux-glibc2.12-x86_64.tar.xz第三步:解压 tar xvJf mysql-8.0.21-linux-glibc2.12-x86_64.tar.xz第四步:修改文件夹名mv mysql-8.0.21-linux-glibc2.12-x86_64.tar.xz mysql8.0原创 2021-12-28 18:06:45 · 1234 阅读 · 1 评论 -
Mysql引擎InnoDB和MyISAM的选择
InnoDB 支持事务,MyISAM 不支持事务。这是 MySQL 将默认存储引擎从 MyISAM 变成 InnoDB 的重要原因之一;InnoDB 支持外键,而 MyISAM 不支持。对一个包含外键的 InnoDB 表转为 MYISAM 会失败;InnoDB 是聚集索引,MyISAM 是非聚集索引。聚簇索引的文件存放在主键索引的叶子节点上,因此 InnoDB 必须要有主键,通过主键索引效率很高。但是辅助索引需要两次查询,先查询到主键,然后再通过主键查询到数据。因此,主键不应该过大,因为主键太大,其他.转载 2021-07-08 10:51:16 · 814 阅读 · 0 评论 -
springboot数据库版本与驱动报错:Loading class `com.mysql.jdbc.Driver‘. This is deprecated
Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver’. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.数据库版本8,使用com.mysql.jdbc.Drive原创 2021-05-19 11:02:13 · 290 阅读 · 0 评论 -
mysql批量删除表
原创 2021-04-23 15:08:23 · 98 阅读 · 0 评论