I have an existing webapp and want to add a tag feature so that users can tag existing objects. The question is should I add a tag column to each object? or should I normali
Yes, you should normalize it. The 'tag column' is either going to support only one tag per record, or is going to have hideous search performance.
Definitely normalize. A table for tags, a table for your existing objects, and a table of links between them.
Do you foresee users needing to associate more than one tag with an object?
If not, add the TAG_ID fk to the OBJECT table. Otherwise, you'd need three tables in total to correctly model a many-to-many relationship:
OBJECT
OBJECT_TAG_XREF
TAG