Read the rules before posting!
http://www.hibernate.org/ForumMailingli ... AskForHelp
I am using Hibernate 3 latest release
I have 3 tables call them T1, T2 and T3 and they all bind on column bindColumn.
what would the HSQL statement be for binding t1 inner jion t2 and t1 left join t3
I thought it would be
select t1, t2, t3 FROM (T1 as t1 inner join T2 as t2
ON t1.bindColumn = t2.bindColumn)
left join T3 as t3
ON t1.bindColumn = t3.bindColumn
I know this is basic but i actually need to prove that hibernate can bind 7 tabes together with various inner and left joins to get it accepted.
your help would rock.
gavins talk at jboss world was good btw