码迷,mamicode.com
首页 >  
搜索关键字:tween    ( 1183个结果
使用docker-compose配置redis服务
前言# 因为docker的跨平台,所以使用docker搭建自己的数据库非常方便 代码# 代码示例目录结构# docker-compose.yaml# Copy version: '3' services: redis: image: redis container_name: docker_redi ...
分类:其他好文   时间:2021-06-19 19:05:02    阅读次数:0
jpa中的常用关键字
使用jpa时,我们需要继承至JpaRepository 继承之后,可以写HQL或者通过方法名自动生成SQL语句 生成SQL语句时JPA中的常用关键字 And 等价于 SQL 中的 and 关键字, 比如 findByUsernameAndPassword(String user, String pw ...
分类:其他好文   时间:2021-06-13 10:29:36    阅读次数:0
Caused by: com.fasterxml.jackson.core.JsonParseException: Illegal character ((CTRL-CHAR, code 31)): only regular white space (\r, \n, \t) is allowed between tokens
Caused by: com.fasterxml.jackson.core.JsonParseException: Illegal character ((CTRL-CHAR, code 31)): only regular white space (\r, \n, \t) is allowed b ...
分类:Web程序   时间:2021-06-10 17:50:56    阅读次数:0
6.数据库级别的外键以及语句详解
mysql 的数据管理 外键 CREATE TABLE IF NOT EXISTS `student2`(`id` INT(4) NOT NULL AUTO_INCREMENT COMMENT '学号',`name` VARCHAR(30) NOT NULL DEFAULT '匿名' COMMENT ...
分类:数据库   时间:2021-05-24 16:33:53    阅读次数:0
动态规划
动态规划是一种优化方法: Mathematical optimization (alternatively spelled optimisation) or mathematical programming is the selection of a best element, with regar ...
分类:其他好文   时间:2021-05-24 06:50:11    阅读次数:0
std:lower_bound and std::set::lower_bound
C++ stdlower_bound and stdset::lower_bound 在set中使用stdlower_bound发现非常耗时,而使用stdsetlower_bound发现速度明显提升。 该文章解释说明了这两个的区别,在set中使用stdset::lower_bound才是最好的选择。 ...
分类:其他好文   时间:2021-05-24 03:15:28    阅读次数:0
条件查询where
9.3.1常见的运算符 关系运算符:=、!=、<>、>=、<= 区间:between A and B -》[A,B] And :并且,和。 Or:或者 Is null:空 Not:否,非 Is not null:非空 In:在什么里面 9.3.2 或or、并且and ##(2.1)查询性别女,并且 ...
分类:其他好文   时间:2021-04-22 15:17:27    阅读次数:0
[转]java 计算两个时间差得出:时分秒
用到:java.time,java.util两个jar包,系统默认的包 @Test public void ddd(){ LocalDateTime inDate = convertDateToLDT(DateUtils.strToDate("2021-04-13 17:45", DateUtils ...
分类:编程语言   时间:2021-04-15 12:50:08    阅读次数:0
How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops
How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops Regular expressions are used for Pattern Matching. To use in Excel fo ...
分类:其他好文   时间:2021-04-14 12:44:22    阅读次数:0
Oracle分页
常用关系数据库分页SQL都是不相同的,不过大同小异。 下面是Oracle分页简单事例图片以及代码: 1、普通查询 select * from table_Name t order by active_count desc; 2、查询第一条记录 select * from (select * from ...
分类:数据库   时间:2021-04-13 12:44:12    阅读次数:0
1183条   1 2 3 4 ... 119 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!