mysql - Which one of these is better for ASP.NET Access database for forum -


is better have 1 table 10 000 entries, or better have 100 tables 100 entries. idea create table each thread created, table store posts thread. sugested me have 1 master table entries of threads, , when open specific thread call entries table (e.g. id of thread)

performance wise there should little (if @ all) difference.

logically , rationally, however, creating table each , every thread makes no sense. makes more sense have table threads (i.e.: thread name , thread id relationship, created date, etc.) , using thread id foreign key in table posts (i.e.: post id , thread id belongs).

of course in end won't matter much, unless forum begins grow considerable size (5,000+ regular users).


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -