try:
select t1.project_id, t2.project_name, t3.user_id, t1.user_history
from table1 t1, table2 t3, table3 t3
where t1.project_id = t2.project_id
AND t1.project_id = t3.project_id
Based on the table structure you presented, the userhistory is tied to the project_id instead of the user_id
If...