欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

记录一个hql错误

程序员文章站 2022-03-06 15:30:45
...
Incorrect query syntax [
   
    select
        t.id,t.busFlowID,t.entName,t.leRep,t.type,t.entTypePro,t.entType,t.dom,t.tel,t.accDate,t.state,t.busID
    from
        com.topsoft.domain.icis.reg.entxml.entity.EntActInfoXML t
    where
        t.state in ('01','02','04','12','91','03')
        and (t.accOrgID=152011500000000 or t.apprOrgID=152011500000000)
        and t.busType='01'
        and t.type = '2100'
        and t.entName like '%' = '%'
        and not exists (
            select
                t.id
            from
                com.topsoft.domain.icis.reg.register.entity.IndSimpleEstRecord s
            where
                s.actBusFlowId = t.busFlowID
        )
   
    ]