Tagged Questions
1
vote
1answer
101 views
help on left outer join with parent-child relationship
i have following table in my database :
id grp# code parent#
-- ---- ---- -------
0 10 US NULL
0 30 SF 10
1 10 S NULL
1 30 SF 10
...
1
vote
4answers
289 views
2 Right Outer Join in SQL Statement
I have an issue in understanding a very simple yet interesting query concerning 2 right outer joins with 'non-sequential' on-expressions. Here is the query:
select * from C
right outer join A on ...
1
vote
1answer
709 views
Good object structure for results of my Hibernate left outer join
I need to make an outer join query that retrieves all of the definitions and any properties they have associated with them that are associated with a certain company.
I have two Hibernate models ...