This is my Sql:
SELECT * FROM parameter1
WHERE parameter1_ID IN (34,11)
this results in over 400 results (which is normal), most results have multiple values in VALUE column and some of the results have duplicate and multiple values in the VALUE column. I want to get rid of the duplicate VALUEs within their respective results, what can I add to this query to do so? Using MS SQL studio
example result from query:
ID VALUE
1 100,200
2 100,100,200
3 200,200,300
4 200,200,300
result I want
ID VALUE
1 100,200
2 100,200
3 200,300
4 200,300