小小梦想pxh

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

2021年4月16日

摘要: 解决方案:使用row_number() over( partition by) 方法分组排序 with temp as ( select a,b,c from test_table ) select a,b,c from ( select a,b,c,row_number() over (parti 阅读全文
posted @ 2021-04-16 16:05 小小梦想pxh 阅读(141) 评论(0) 推荐(0)

2019年9月23日

摘要: 概述 搭建Spring + SpringMVC + MyBatis集成环境。 一,依赖的jar 二,配置web.xml 之后添加四个配置文件分别是如下: 1.由于MyBatis依赖与log4j输出sql语句信息,所以需要配置log4j.properties配置文件。 2.添加springmvc.xm 阅读全文
posted @ 2019-09-23 14:58 小小梦想pxh 阅读(150) 评论(0) 推荐(0)

2019年8月8日

摘要: 一、SSH架构 1.Struts 2 + Spring + Hibernate 2.以Spring作为核心框架,数据持久化使用Hibernate完成,表现层使用Struts 2 3.Spring提供对象管理、面向切面编程等实用功能 4.通过Spring提供的服务简化编码、降低开发难度、提高开发效率 阅读全文
posted @ 2019-08-08 20:43 小小梦想pxh 阅读(377) 评论(0) 推荐(0)