tags:

views:

9

answers:

0

i can run the following querry in sql the table having primary keys only,i did not make any foreign key constraints.the querry was execute and gives the results.can i do this in hibernate? /* select employee_evaluators.employee_id as evaEmpId,evaluator_id as evaId, employees.employee_name,customer.customer_name from employee_evaluators LEFT JOIN employees ON employee_evaluators.evaluator_id=employees.employee_id LEFT JOIN customer ON employee_evaluators.evaluator_id=customer.customer_id;*/