• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

hibernate undefined alias : 1 error

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I am new to hibernate .

When i run the below HQL i get undefined alias : 1 erorr

1> Error :
HQL :

"select distinct mct.Col, mct.mctIss ,mct.mctChe, mct.mctCli,mpl.mplAd,mct.mctShp, mct.mctRef, mpl.Par from MPDTO mpl, MADTO maa, MCDTO mct where mct.mctAd = maa.Ad and maa.Ad = mpl.Ad and mpl.mplSpo = 'GREP' and mct.mctCol ='335' and not exists ( select 1 from MTDTO mtp WHERE mtp.mtpShp = mct.mctShp )";

Any idea ???

2 > Also another query is MINUS[SQL] supported by HQL ...if not how can i implement MINUS in HQL

Thanks in advance.

Sekhar
reply
    Bookmark Topic Watch Topic
  • New Topic