I have to create a query that I am not really sure how to handle since I can't get all the cases covered.
I have one table called company with the following (relative) columns
Table Company
Columns:
Id | Name | Status | Status_Effective_Date
Let's say that Status
can take values from 1 to 12
. The logic is that the company is in status 2
for example since 01/01/2018
(status_effective_date)
Table Company Status History
Columns
Id | Company_Id | Status | Status_Effective_Date
This table holds the history of the changes that have happened to the status. If for example I have two entries for the company with Id = 10
like
Row_1 : 1 | 10 | 1 | 02/03/2011
Row_2 : 2 | 10 | 5 | 06/08/2013
Then the company with Id = 10
was is status 1
from 02/03/2011
until 06/08/2013
. After that it was is status 5
.
What I want to do is to create a report that will show me all the companies that for a selected date range have been at some point in the selected status.
Now for example let's say I want to query with status = 1
and date range between 01/01/2017 - 31/12/2017
The cases that I have to cover that I can understand are: (YES the cases that I want and NO the cases that I don't want)
One company was always in status 1 and never changed (YES)
1.1 The company_table entry has status = 1 and effective date before the start date
1.2 The company_status_history table doesn't have any rows since no change in the status has been applied
One company was in status 1 and changed to different status before the date range (NO)
2.1 The company_table entry has status <> 1 and effective date before the start date
2.2 The company_status_history_table has one entry of the company in the status 1 with effective date the initial effective date (initial state) and one entry of the company in the new status (<>1) with effective date the date of the change (before the date range)
One company was in status 1 and changed to different status inside the date range (YES)
3.1 The company_table entry has status <> 1 and effective date after the start date and before the end date
3.2 The company_status_history_table has one entry of the company in the status 1 with effective date the initial effective date (initial state) and one entry of the company in the new status (<>1) with effective date the date of the change (inside the date range)
One company was in status 1 and changed to different status after the date range (YES)
4.1 The company_table entry has status <> 1 and effective date after the after the end date
4.2 The company_status_history_table has one entry of the company in the status 1 with effective date the initial effective date (initial state) and one entry of the company in the new status (<>1) with effective date the date of the change (after the date range)
One company was in status <>1 and changed to status = 1 before the date range (YES)
5.1 The company_table entry has status 1 or <> 1 (since it might have changed again) and the effective date could be before the date range if it is still in status = 1 or some later date if it has changed again.
5.2 The company_status_history_table has one entry of the company in the previous status with effective date the initial effective date (initial state) and at least one entry of the company in the new status (=1) with effective date the date of the change (before the date range)
One company was in status <>1 and changed to status 1 inside the date range (YES)
6.1 The company_table entry has status 1 or <>1 (if it has changed again) and effective date the date inside the date_range or some later one if it has changed again
6.2 The company_status_history_table has one entry of the company in the initial status with effective date the initial effective date (initial state) and at least one entry of the company in the status 1 with effective date the date of the change (inside the date range)
One company was in status <>1 and changed to status 1 after the date range (NO)
7.1 The company_table entry has status 1 or <>1 (if there has been another change) and effective date after the after the end date
7.2 The company_status_history_table has one entry of the company in the initial status <>1 with effective date the initial effective date (initial state) and at least one entry of the company in the new status (1) with effective date the date of the change (after the date range)
What I have tried so far is the below:
-- Case 6
select *
from company com, company_status_history csh
where csh.company_status_id = 1
and com.company_id = csh.company_id
and csh.company_status_eff_date > '20170101'
and csh.company_status_eff_date < '20171231'
union
-- Case 1
select *
from company com
where com.company_status_id = 1
and com.company_status_eff_date < '20181231'
and com.company_id NOT IN (select company_id
from company_status_history csh)
I am guessing there might be a more effective way from using the union.
What I am missing is cases 3,4,5 and it is the part that I should understand from the previous company_status_history entry (effective date) of the following query if the change should include the company into my final list.
select * from company com, company_status_history csh
where com.company_id = csh.company_id
Every help would be greatly appreciated.
I will take shot!
Seems like you want the list of any company that has been in the given status and date range provided. This seems a bit less complicated when we realize that you want to know ANY company that has had ANY status in BETWEEN the provided date range.
Case 3,4 and 5 are your most important: One company was in status 1 and changed to different status inside the date range (YES) We can find this out no problem. One company was in status 1 and changed to different status after the date range (YES) As long as it was in the status at the beginning of the date range, then it should appear in the results.
One company was in status <>1 and changed to status = 1 before the date range (YES) - so it arrived into the status in between the beginning and end of the date range.
Here's a working sample I made up. Hope it helps.
From what I read I assume that you want all the companies that had status 1 inside your date range. If this is what you want, that’s pretty easy.
The following statement should do the job :
What I did was to create a nested view with the last status until the end of your date range, so if the last change of a company status is 1 then this company should be included in your result. We don’t care about changes after your date range, so I put the restriction inside the nested view.
The beginning of your range is insignificant for this request. You probably needed for other purposes, to join other tables.
I am Oracle guy, so I think Ι could make this statement much better using Oracle analytics, but I think it will be a valid statement for SQL server.
I finally got the working query thanks to this answer to my simplified problem. I am posting it in case someone else needs it.