hibernate中时间比较的小笔记
阅读原文时间:2023年09月10日阅读:4
    // 开单时间  
    if (!"".equals(startDate) &&  startDate != null) {  
        queryCondition = queryCondition  
                + " and t.receiptDate >= str\_to\_date('"  
                + startDate + "','%Y-%m-%d')" ;

    }

    if (!"".equals(endDate) && endDate != null) {  
        queryCondition = queryCondition  
               // + " and t.orderDate < '"+ CommonUtil.getAddDate(endDate.toString(), 1) +"','%Y-%m-%d')";  
                + " and t.receiptDate < str\_to\_date('"+ CommonUtil.getAddDate(endDate.toString(), 1) + "','%Y-%m-%d')";  
    }

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章