mybatis按时间查询oracle数据

本文介绍了如何在Mybatis中配置SQL查询,以便在Oracle数据库中根据时间进行筛选操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

mybatis配置按时间查询oracle数据

1.mybatis中查询sql配置

<select id="findArticleByid" parameterType="com.hehe.ParaBean" resultType="com.hehe.bean.Page">
     select * from table p where p.time &lt;= #{time}
        and p.id = #{id}
</select>



2.java中调用

public void test(){
	SqlSessionFactory sqlSessionFactory = DBSqlSessionFactory.getInstance("DBname");
	SqlSession sqlSession = sqlSessionFactory.openSession();
	ParaBean paraBean = new ParaBean();
	SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
	try {
		Date date = format.parse("2011-01-01 00:00:00");
		paraBean.setId(111840);
		paraBean.setTime(date);
	} catch (ParseException e) {
		e.printStackTrace();
	}
	List<Page> list = sqlSession.selectList("com.hehe.mapper.PageMapper.findArticleById",paraBean);
	System.out.println(list.size());
	sqlSession.close();
}

3.paraBean查询参数Bean

public class ParaBean {
	private int id;
	private Date time;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值