hi all ,
i have three tables
1- test_data_items (test_data_item_id pk
, test_data_item_name)
2- data_items_in_tests (test_id , test_data_item_id) -- the two are composite primary key .
3- test_results ( test_results_id pk ,
test_admin_id ,
test_id , test_data_item_id ) -- the two are composite foreign key .
how to join the three tables ?
i want all the data , but i do not know how to write the join conditions when there are composite primary and foreign keys ?
thanks a lot