<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1046387" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1046387</link>
    <description></description>
    <language>en</language>
          <item>
    <title>According to me that&#039;s not</title>
    <link>https://www.webmaster-forums.net/web-database-development/there-good-idea-store-all-data-one-table-many-categories-or-one-category-on#comment-1250961</link>
    <description> &lt;p&gt;According to me that&#039;s not good, &amp;amp; it&#039;s create an situation against  &lt;strong&gt;Normalization Concept&lt;/strong&gt;, which means that,  normalization is the process through which we organize   tables in such a way that the results contain no duplicate data , but we get the data in more consistence form. or in other word we can say that it is the process of &lt;em&gt;braking down one table into it&#039;s sub tables&lt;/em&gt; so that data redundancy can be removed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Example: &lt;/strong&gt;&lt;br /&gt;
Customer	Item       -                   purchased	    -                                              Purchase price&lt;br /&gt;
Sandeep	              -                     Shirt	            -                                                 940&lt;br /&gt;
Deepak	              -                 Tennis shoes	    -                                                2300&lt;br /&gt;
Krishna	              -                   Trousers	    -                                                       550&lt;/p&gt;
&lt;p&gt;Now here we &lt;strong&gt;store all the data in one table for many categories&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;then &lt;em&gt;what happen&lt;/em&gt;&lt;/strong&gt; ??? Suppose you delete one of the customers sandeep, that&#039;s OK but you see, you also delete the price of shirt, Now how we overcome that, through Normalization, here we dividing this table into two tables, &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1)customer and a product &lt;/strong&gt;&lt;br /&gt;
Customer	Item    -                      purchased&lt;br /&gt;
Sandeep	           -                        Shirt&lt;br /&gt;
Deeapk	           -                    Tennis shoes&lt;br /&gt;
Krishna	           -                      Trousers	        &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2)product and its price. &lt;/strong&gt;                              purchased-	                                                 Purchase price&lt;br /&gt;
  Shirt	            -                                                 940&lt;br /&gt;
  Tennis shoes	     -                                                2300&lt;br /&gt;
  Trousers	              -                                               550&lt;/p&gt;
&lt;p&gt;then we solve my Bad Situation. and Now I think that you get it my all point that&#039;s I want to share with you.&lt;/p&gt;
 </description>
     <pubDate>Mon, 19 Jul 2010 05:46:35 +0000</pubDate>
 <dc:creator>sandeep Kumar</dc:creator>
 <guid isPermaLink="false">comment 1250961 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Reading this again, and your</title>
    <link>https://www.webmaster-forums.net/web-database-development/there-good-idea-store-all-data-one-table-many-categories-or-one-category-on#comment-1247994</link>
    <description> &lt;p&gt;Reading this again, and your other post: &lt;a href=&quot;http://www.webmaster-forums.net/web-database-development/database-design-ngo-website-mysql&quot; title=&quot;http://www.webmaster-forums.net/web-database-development/database-design-ngo-website-mysql&quot;&gt;http://www.webmaster-forums.net/web-database-development/database-design...&lt;/a&gt; and assuming they&#039;re related.&lt;/p&gt;
&lt;p&gt;You&#039;re probably better off using a CMS, like &lt;a href=&quot;http://drupal.org&quot;&gt;Drupal&lt;/a&gt; or, if your needs are simple, blogging software &lt;a href=&quot;http://wordpress.org&quot;&gt;Wordpress&lt;/a&gt; can be really good for small sites.&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Mar 2010 15:20:00 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1247994 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Agreed with Greg. You should</title>
    <link>https://www.webmaster-forums.net/web-database-development/there-good-idea-store-all-data-one-table-many-categories-or-one-category-on#comment-1247992</link>
    <description> &lt;p&gt;Agreed with Greg. You should have one table for ‘data’ (whatever that might be) and another table for&lt;br /&gt;
categories linked by ‘categoryid’, do &lt;em&gt;not&lt;/em&gt; create separate tables for each category though, that&#039;s evil. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It might be possible -- and a good idea for performance and the integrity of your data -- to split the data out into further tables, however we&#039;d need to know specifics of what you&#039;re doing to advise on that.&lt;/p&gt;
&lt;p&gt;Oh and welcome to TWF! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Mar 2010 14:53:00 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1247992 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Without knowing the specifics</title>
    <link>https://www.webmaster-forums.net/web-database-development/there-good-idea-store-all-data-one-table-many-categories-or-one-category-on#comment-1247991</link>
    <description> &lt;p&gt;Without knowing the specifics of what type of data you are saving, I would say if all the data contained the same fields, and were all related just grouped by the category, then one table for the data, and then depending on the number of categories, the use, and chances of adding to the list in the future, either and ENUM field listing the categories or table of data and a table of categories, with the data table having a key over ot the category table (preferable as a foreign key relation).&lt;/p&gt;
&lt;p&gt;Again, this is generalized not knowing what type of data and what it is used for.&lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Mar 2010 13:37:15 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1247991 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
