Also, which schema is better for the above?
Code: Select all
forum_users
...
viewed_threads
forum_threads
...
viewed_byModerator: General Moderators
Code: Select all
forum_users
...
viewed_threads
forum_threads
...
viewed_byDon't do this!Syntac wrote:I have an idea for that; it involves storing a group of values in a field. Is there a special MySQL type for this sort of thing or do I just go with the ol' explode() trick?