Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
INSERT INTO project_dim1 
(
    project_id,project_name,client_name,
    list_type,project_start_date,
    project_create_date,actual_project_end_date,
    scheduled_end_date,created_by,project_manager,
    project_specialty,quota_country,quota,
    create_date,update_date
);


SELECT
  Project_Details.project_id,
  Project_Details.project_name,
  Project_Details.client_name,
  Project_Details.list_type,
  project_tracker.project_start_date,
  Date(Project_Details.created_date),
  project_tracker.actual_completion_date,
  project_tracker.scheduled_completion_date,
  Project_Details.created_by,
  Concat(employee_details.first_name, ' ', employee_details.last_name),
  specialty.specialty_name,
  project_quota_details.country,
  project_quota_details.quota,
  NULL,
  NULL
FROM project_details
  left join project_quota_details
    on (project_details.project_id = project_quota_details.project_id)
  left join project_tracker
    on (project_details.project_tracker_id = project_tracker.project_tracker_id)
  inner join employee_details
    on (project_details.Employee_Id = employee_details.Employee_Id)
  inner join specialty
    on (project_quota_details.specialty_id = specialty.specialty_id)

In the above query, I found some records that are in project_details table are not picking because those id's didn't have records in project_quota_details. can anyone suggest why those records are not picked? Any idea? any suggestions?

share|improve this question
1  
the reason is because on the INNER JOIn you used on the following tables. – JW 웃 Feb 22 at 6:35
1  
most likely, your inner join is filtering results ... see: msdn.microsoft.com/en-us/library/ms190014(v=sql.105).aspx – Xander Feb 22 at 6:35
Ok I will change it and try. Thanks – user1597811 Feb 22 at 6:36
Yes that is the reason. It is working fine. – user1597811 Feb 22 at 6:40

closed as too localized by gbn, Jay Gilford, X.L.Ant, Doorknob, Frank Shearar Feb 22 at 14:19

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.