Hello,大家好!我是程序员阿飞!今天主要给大家分享一下上周工作以及学习中遇到的知识点。
一、Mysql分组取最大时间的数据
先分组使用 max() 函数查询出每组中最大的时间和类型,将时间字段和类型字段定义为一个新表 tmp,再通过与 tmp 表的时间和类型联合查询,即可查询出每组中的最新一条数据(时间最大的那条数据)。之所以要使用时间和类型两个字段,是因为可能存在不同类型但时间相同的数据
select * from t_company t RIGHT JOIN (select type, MAX(create_date) as “createDate” from t_company GROUP BY type) tmp on t.create_date = tmp.createDate and t.type=tmp.type
二、replace 双引号到单引号
str.replace(“\””, “\'”);
str.replaceAll(“\””, “\'”);
三、Eclipse上传代码到码云
参考网址:https://blog.csdn.net/zjsdrs/article/details/78407571
【参考地址】
https://blog.csdn.net/wsjzzcbq/article/details/86691472
https://blog.csdn.net/konglongaa/article/details/51596440