I want a tag system like whats on SO but Im not sure how to implement this in the database. This is how i was going to implement it.
Here are my columns in the database
Article Table
- ID
- Title
- TitleSlug
- Date
- UserID
- Description
- IsDeleted
- TagID1
- TagID2
- TagID3
- TagID4
- TagID5
- TagName1
- TagName2
- TagName3
- TagName4
- TagName5
Tag table
- TagID
- TagName
Is this a good way to implement tags in the database?