上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 54 下一页
摘要: 参考: SpringBoot修改内置tomcat版本 阅读全文
posted @ 2022-10-27 10:02 BBS_自律 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 参考:测试left join和where的优先级 SQL LEFT JOIN WHERE 的执行顺序 --create table tab1--(--id int,--size int--) --create table tab2--(--size int,--name varchar(10)--) 阅读全文
posted @ 2022-10-24 14:23 BBS_自律 阅读(1967) 评论(0) 推荐(0) 编辑
摘要: 转:关于什么时候用get请求和什么时候用post请求 get和post方法功能类似的,使用建议: 1、get方式的安全性较Post方式要差些,包含机密信息的话,建议用Post数据提交方式;2、在做数据查询时,建议用Get方式;而在做数据添加、修改或删除时,建议用Post方式;区别表现如下: get是 阅读全文
posted @ 2022-10-24 10:46 BBS_自律 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-10-24 09:56 BBS_自律 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 1.mysql 中 datetime类型相减 结果是多少秒 直接减去是错的百分制的 正确的sql: selec t (UNIX_TIMESTAMP(endDateTime) - UNIX_TIMESTAMP(beginDateTime)) dif_second from tblName 2. jav 阅读全文
posted @ 2022-10-22 09:36 BBS_自律 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 参考:2021-08-16 mysql查询非分组字段 mysql 5.7 及其以上版本配合GROUP BY 关键字一起使用,查询非分组字段可以使用any_value 函数 select any_value(aht.ID_) as ID, any_value(aht.PROC_INST_ID_) as 阅读全文
posted @ 2022-10-22 09:26 BBS_自律 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 1.使用group_concat 函数,但是弊端只能查询group by后的字段 参考: MySQL分组排序取每组第一条(最大值、最小值) MySQL 的 GROUP_CONCAT 函数详解 效果: group by 只能查询对应的分组字段和所有字段的聚合函数信息,比如sum()、avg()、max 阅读全文
posted @ 2022-10-20 15:46 BBS_自律 阅读(8222) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2022-10-20 14:52 BBS_自律 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 参考: Java 日期算法(计算两个date类型的时间差) 阅读全文
posted @ 2022-10-19 14:50 BBS_自律 阅读(21) 评论(0) 推荐(0) 编辑
摘要: MySQL获取当前时间 Mysql date_to_str()函数 日期格式化详细解析 date_format 小写 str 转 date date_format(date,'%Y-%m-%d') >oracle中的to_char(); str_to_date(str_date,'%Y-%m-%d' 阅读全文
posted @ 2022-10-19 11:18 BBS_自律 阅读(574) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 54 下一页