我在兩個表之間做了內連接,但它不起作用。 如果有人能夠儘快幫助我,它會幫助我很多。我的內連接不起作用
在此先感謝
它看起來像這樣:
List<Bondetal> bondetals = session.createQuery("from Bondetal bd inner join bd.Bon b where bd.idbon = b.idbon and idprodus = " + idprodus +" and Bon.suma >=" + suma).list();
我得到這個錯誤:
Exception in thread "AWT-EventQueue-0" org.hibernate.QueryException: could not resolve property: Bon of: sakila.entity.Bondetal [from sakila.entity.Bondetal bd inner join bd.Bon b where bd.idbon = b.idbon and idprodus = 2 and Bon.suma >=1]
告訴我們Bondetal類 –