coming back with a new question concerning SQL (Server 2016 or above).
I have a data view with 5 fields like:
ID_Card | ID_Name| ID_Details | ID_Date |ID_Validation
12345 Joe C30,C40,C50,C60 20.11.20 YES
Now I want to give out some information for ID_Details. If C30 is in the ID_Details, I want to give out some text like "Further information needed", for C40 for example I want to give out "No updates present". and so on. The Details list is limited to 5 entrys, which must not be present. The list is separated in the ID_Details field with an comma.
Thanks in advance!