I'm writing an app in .NET, and using a dropdown checkbox.
I'm not sure what the best practice is for storing this info in the db.
Currently I'm writing back a comma delimited string to an SP in SQL Server 2008 ie "apple, banana, pear", storing this in a nvarchar(MAX) and then splitting this in the SP into another table holding the ID and the Type ie
ID Type
17 apple
17 banana
17 pear
Is this overkill, or the correct approach?