Hi everyone, I got a little problem with some joins Im trying to do in MySQL 5.0. The setup is as follows: 3 tables - parent_table(pk, data), child_table1(fk_parent, pk, data), child_table2(fk_parent, pk, data). What do I want to accomplish? Well in my java-code I have a TransferObject that reflects this structure - Parent, Child1, Child2. Parent has besides it data variable ...