Mysql 查询天、周,月,季度、年的数据 Mysql 查询天、周,月,季度、年的数据今天 1select * from 表名 where to_days(时间字段名) = to_days(now()); 昨天 1SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) <= 1 近7天 1SELECT * FROM 表名 where DATE_SUB(CURDATE() 2022-11-28 数据库 #数据库 #Mysql
Mysql5.7及以上版本 ONLY_FULL_GROUP_BY报错 近期在开发过程中,因为项目开发环境连接的mysql数据库是阿里云的数据库,而阿里云的数据库版本是5.6的。而测试环境的mysql是自己安装的5.7。因此在开发过程中有小伙伴不注意写了有关group by的sql语句。在开发环境中运行是正常的,而到了测试环境中就发现了异常。 原因分析:MySQL5.7版本默认设置了 mysql sql_mode = only_full_group_by 2022-11-28 数据库 #数据库 #Mysql
MySQL 学习笔记 MySQL 学习笔记数据库操作123456789101112131415161718-- 查看当前数据库 SELECT DATABASE();-- 显示当前时间、用户名、数据库版本 SELECT now(), user(), version();-- 创建库 CREATE DATABASE[ IF NOT EXISTS] 数据库名 数据库选项 数据库选项: C 2022-11-28 数据库 #数据库 #Mysql
MySQL数据库设计规范 MySQL数据库设计规范转载原文:https://github.com/jly8866/archer/blob/master/src/docs/mysql_db_design_guide.md#%E7%9B%AE%E5%BD%95 目录123456789101112131415161718192021221. 规范背景与目的 2. 设计规范2.1 数据库设计 2.1.1 库名 2.1.2 表结构 2022-11-28 数据库 #MySQL
MySQL数据和索引占用空间查询 MySQL数据和索引占用空间查询查询所有数据库占用磁盘空间大小的SQL语句12345678910SELECT table_schema, -- 数据库名称 concat( TRUNCATE ( sum( data_length ) / 1024 / 1024, 2 ), 'MB' ) AS data_size, -- 数据占用空间 concat( TRUNCATE ( sum( 2022-11-28 数据库 #数据库 #Mysql
【环境搭建】Nexus搭建Maven私服 【环境搭建】Nexus搭建Maven私服Nexus官方下载地址:https://help.sonatype.com/repomanager3/download Docker启动1234#查找镜像;一般安装star数最多的版本,目前最新是sonatype/nexus3docker search nexus#拉取镜像docker pull sonatype/nexus3 简单方式启动 1234567 2022-11-27 环境集成 #Maven #Nexus
SpringBoot2 整合 Swagger2 SpringBoot2 整合 Swagger2SpringBoot整合三板斧 第一步、引入pom123456789101112131415161718192021<dependency> <groupId>com.spring4all</groupId> <artifactId>swagger-spring-boot-starter</ar 2022-11-23 SpringBoot #SpringBoot #Swagger2
SpringBoot2 线程池的定义和使用 SpringBoot2 线程池的定义和使用定义线程池 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849@Slf4j@EnableAsync@Configurationpublic class AsyncExecutorConfig implements AsyncCon 2022-11-23 SpringBoot #SpringBoot #线程池
SpringBoot AOP处理请求日志处理打印 SpringBoot AOP处理请求日志处理打印12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061@Slf4j@Aspect@Configurationpublic class RequestAopConfig { 2022-11-23 SpringBoot #SpringBoot #AOP #切面 #日志处理
SpringBoot自动配置与@Enable方式配置 SpringBoot自动配置与@Enable方式配置SpringBoot自动配置:在resources目录下新建META-INF目录,创建spring.factories文件。 1org.springframework.boot.autoconfigure.EnableAutoConfiguration=xx.xx.xx.TestAutoConfig 1234567891011121314151 2022-11-23 SpringBoot #SpringBoot #自动配置