This question is all about performance and I would appreciate if the answers are specific to the case I provide.
Which is more appropriate performance-wise?
- creating a table with too many fields
- creating more than one table and distributing similar fields to them
CASE: An Extensive Web CMS Module
Pattern 1: Long but one table
cms
-----------------------------------------------
Id
Title
Description
Images
Order
Status
Publish
meta_keywords
meta_description
meta_author
Cleary, most the Open Source CMS like joomla use the above pattern. But i think, that pattern is killing the spirit of RDBMS. We can easily separate the content, configuration and meta of a particular article to different tables. Like the following
Pattern 2: Many but related table
Cms_content cms_meta cms_configuration
---------------------------------------------------------------------------
Id id id
Title content_id content_id
Description keywords status
Content description order
Images author publish
Note: Relations in this case is one-to-one
Which is the proper pattern to follow? Why choose a long but one table, or why not to choose distributed tables, over the single table?