Hi All,
I am not sure how to do this but I want to be able to run a query to find any coustmer who did not have any activities since 2 months for example.
The tables involved will be in the following:
SELECT Organization_tbl.OrganizationName, ProjectSub_tbl.[Start date], ProjectSub_tbl.SubDescription, ProjectSub_tbl.[End date]
FROM (Organization_tbl INNER JOIN Projects_tbl ON Organization_tbl.OrganizationID = Projects_tbl.OrganizationID) INNER JOIN ProjectSub_tbl ON Projects_tbl.ProjectID = ProjectSub_tbl.ProjectID;
Thanks
I am not sure how to do this but I want to be able to run a query to find any coustmer who did not have any activities since 2 months for example.
The tables involved will be in the following:
SELECT Organization_tbl.OrganizationName, ProjectSub_tbl.[Start date], ProjectSub_tbl.SubDescription, ProjectSub_tbl.[End date]
FROM (Organization_tbl INNER JOIN Projects_tbl ON Organization_tbl.OrganizationID = Projects_tbl.OrganizationID) INNER JOIN ProjectSub_tbl ON Projects_tbl.ProjectID = ProjectSub_tbl.ProjectID;
Thanks