Skip to content
Advertisement

SQL Query Inactive Users with last end date

This is a follow up from a question I asked about a year ago Old thread The answers I got then have worked fine but now I discovered that I need to tweak the query to be able to get the latest end date for the inactive users.

So again here’s a quick example table of users, some are active and some are inactive and some have several period of employment.

when someone is reemployed a new row will be added for that employment period. Username will always be the same.

So I want to find which users that is disabled and doesn’t have an active employment also if there is several period of employment I want the one that has the latest end date. One row per username with all the columns.

The database is SQL Server 2016.

Example table:

So for user 1116 I would ideally get one row with enddate 4/5/2019

The query I use from the answers in the old thread is this one:

This gives me the right user and employment status but not the latest end date since it will get the first result for user 1116

Advertisement

Answer

We can use conditional aggregation with a window aggregate to get the number of active rows for this user.

We then filter to only inactive, and row-number the result by enddate taking the first row per group:

Note that the row-numbering does not take into account nulls in enddate which would be sorted last. You would need a conditional ordering:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement