繁体   English   中英

如何对oracle进行条件查询

[英]How to do criteria queries for oracle

如何重新编写此代码以与 oracle 一起使用。 在此之前,它与 Postgres 一起工作并且没有错误。 现在它给出了sql语法错误。

 public List<MyOrder> myOrderListNew(Company company){
        Criteria criteria = session.getCurrentSession().createCriteria(MyOrder.class);
        criteria.add(Restrictions.eq("company.id", company.getId()));
        criteria.add(Restrictions.eq("removeorder", false));
        criteria.add(Restrictions.eq("status", "new"));
        criteria.addOrder(Order.desc("id"));
        List<MyOrder> myOrders = criteria.list();
        return myOrders;
    }

关于: criteria.add (Restrictions.eq ("company.id", company.getId ()));

“company.id”,这里是实体类 MyOrder 中的此属性的company

堆栈跟踪

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet
    org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1013)
    org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
    org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
    org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)

org.hibernate.exception.SQLGrammarException: could not extract ResultSet
    org.hibernate.exception.internal.SQLExceptionTypeDelegate.convert(SQLExceptionTypeDelegate.java:63)
    org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQLExceptionConverter.java:42)
    org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:113)
    org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:99)
    org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.extract(ResultSetReturnImpl.java:69)




java.sql.SQLSyntaxErrorException: ORA-01747: invalid user.table.column, table.column, or column specification

    oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:494)
    oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:446)
    oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1054)
    oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:623)
    oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:252)



Error : 1747, Position : 144, Sql = select this_.myOrder_id as myOrder_id1_6_0_, this_.myorder_company_id as myorder_company_id9_6_0_, this_.courier_id as courier_id10_6_0_, this_.date as date2_6_0_, this_.date_hms as date_hms3_6_0_, this_.hide as hide4_6_0_, this_.removeorder as removeorder5_6_0_, this_.selected as selected6_6_0_, this_.shops_id as shops_id11_6_0_, this_.status as status7_6_0_, this_.sum as sum8_6_0_ from myorder this_ where this_.myorder_company_id=:1  and this_.removeorder=:2  and this_.status=:3  order by this_.myOrder_id desc, OriginalSql = select this_.myOrder_id as myOrder_id1_6_0_, this_.myorder_company_id as myorder_company_id9_6_0_, this_.courier_id as courier_id10_6_0_, this_.date as date2_6_0_, this_.date_hms as date_hms3_6_0_, this_.hide as hide4_6_0_, this_.removeorder as removeorder5_6_0_, this_.selected as selected6_6_0_, this_.shops_id as shops_id11_6_0_, this_.status as status7_6_0_, this_.sum as sum8_6_0_ from myorder this_ where this_.myorder_company_id=? and this_.removeorder=? and this_.status=? order by this_.myOrder_id desc, Error Msg = ORA-01747: invalid user.table.column, table.column, or column specification

    oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:498)
    oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:446)
    oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1054)
    oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:623)
    oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:252)
    oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:612)

格式化后,您使用的查询是这样的。 我已经标记了似乎是错误的:列名不能是DATESUM因为它们是保留字(对于数据类型和函数)。

  SELECT this_.myOrder_id AS myOrder_id1_6_0_,
         this_.myorder_company_id AS myorder_company_id9_6_0_,
         this_.courier_id AS courier_id10_6_0_,
         this_.date AS date2_6_0_,                               --> this
         this_.date_hms AS date_hms3_6_0_,
         this_.hide AS hide4_6_0_,
         this_.removeorder AS removeorder5_6_0_,
         this_.selected AS selected6_6_0_,
         this_.shops_id AS shops_id11_6_0_,
         this_.status AS status7_6_0_,
         this_.SUM AS sum8_6_0_                                  --> this
    FROM myorder this_
   WHERE     this_.myorder_company_id = :1
         AND this_.removeorder = :2
         AND this_.status = :3
ORDER BY this_.myOrder_id DESC

该怎么办? 取决于表描述。 如果您设法创建了这样的表,那么您必须将列名括在双引号中。 如果是这样,则每次处理这些列时都必须执行相同的操作,例如

SQL> create table myorder
  2    ("DATE"   date,
  3     "SUM"    number
  4    );

Table created.

SQL> -- this is what you are currently doing; see? The same ORA-01747 error
SQL> select this_.date,
  2         this_.sum
  3  from myorder this_;
select this_.date,
             *
ERROR at line 1:
ORA-01747: invalid user.table.column, table.column, or column specification

SQL> -- this is what you should be doing
SQL> select this_."DATE",
  2         this_."SUM"
  3  from myorder this_;

no rows selected

SQL>

如果可能,请更改列名称以使您的生活更轻松。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM