在我的约会中添加一天

时间:2017-08-29 09:36:01

标签: javascript java database

我的格式为yyyy-MM-dd格式的字符串 并转换为 dd-mmm-yyyy

现在我需要在我的约会日期添加一天。因为在我的SQL中,当我在2017年8月27日至2017年8月29日的某些日期之间选择数据时,它仅显示27和28的值 - 2017年8月,而不是29-20-2017。所以我需要添加一天,以便获得2017年8月29日的数据。

String dateto=request.getParameter("dateto");
                Date date1=null;
                try {
                    date1 = format1.parse(dateto);
                    temp1 = format2.format(date1);
                    System.out.println(temp1);
                } catch (ParseException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

我的SQL查询

PreparedStatement psmt1=conn.prepareStatement("select * from deposit2_groupc_tja05 where Account_id =? and Transaction_Date between ? and ? order by Transaction_Date");

0 个答案:

没有答案