Skip to content
Advertisement

Sql server map action to state to get the right result

For a database I need to log a state from the action of a different table.

Table 1

ID Action
1 Accept
2 Save
3 Withdraw
4 Accept

Table 2

ID State
1
2
3
4

Result
Table 2

ID State
1 Accepted
2 Draft
3 Withdrawn
4 Accepted

I was thinking of using a CASE WHEN query to solved this like:

I was wondering if this is the best way or if its possible to use some sort of mapper for this.

Advertisement

Answer

Ideally you should maintain some kind of junction table which maps actions in Table1 to states in Table2. Consider:

Table2

ID State
1 Accepted
2 Draft
3 Withdrawn
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement