Skip to content
Advertisement

T-SQL – Flagging Common Values in One Column Based on ID and updating the database

Problem Statement: There are Two Columns, VariableName and ID. I want to map variables in the same column with a two-character alpha code such as ‘aa’, ‘ab’, ‘ac’, ‘ad’…. up to ‘zz’ in T-SQL.

To Illustrate,

Input Data:

Desired Output

As you can see above,

  • “var_1” , is present in ids 1, 2, 3, 4 and is tagged as ‘aa’
  • “var_2” , is present in ids 1, 2 and 4 and is tagged as ‘ab’
  • “var_3” , is present in ids 1, 2 and 3 and is tagged as ‘ac’
  • “var_4” , is present in ids 1, and 4 and is tagged as ‘ad’
  • “var_5” , is present in id 1 BUT IS NOT PRESENT IN THE REST OF THE IDs, so hence NULL
  • “var_7” , is present in id 3 BUT IS NOT PRESENT IN THE REST OF THE IDs, so hence NULL
  • “var_10” , is present in ids 2 and 3 and is tagged as ‘ae’
  • “var_11” , is present in id 2 BUT IS NOT PRESENT IN THE REST OF THE IDs, so hence NULL

To summarize: Essentially, I want to create a mapping flag with the pattern above ‘aa’, ‘ab’, ‘ac’ among different IDs. If the mapFlag is NOT NULL, then isMapped TRUE else FALSE

Lastly, I want to write an “Update” stored procedure to convert the input “MapFlag” column with the Input Data and then update the table with the Output data

Advertisement

Answer

This is the query to get var marks.

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