I have a cell that contains an array of characters seperated by commas i.e. "1,2,3,4,5" My question is, is it possible to remove a particular element of the array such as if I wanted to remove "1" then the cell would then become "2,3,4,5" or remove "3" and it becomes "1,2,4,5" I want to perform this task within SQL either as a function or a stored procedure, any help is much appreciated.

link|improve this question
That is really bad database design. If you have the ability to do so, you should move away from storing multiple values in the same column ASAP. – Raj More Sep 29 '11 at 15:59
feedback

1 Answer

Sure, it'd just be some basic string REPLACE() calls: http://msdn.microsoft.com/en-us/library/ms186862.aspx

However, since you have to manipulate individual bits of this data field separately from the rest of the field, it's a good candidate for getting normalized into its own child table.

link|improve this answer
I strongly recommend getting this column into it's own table. For oh-so-many-reasons (ability to index usefully, ease of use, referential constraints...) – X-Zero Sep 29 '11 at 16:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.