how do you know how to design a mysql database when creating an advanced php application? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:19:01Z http://stackoverflow.com/feeds/question/200257 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/200257/how-do-you-know-how-to-design-a-mysql-database-when-creating-an-advanced-php-appl 6 how do you know how to design a mysql database when creating an advanced php application? sarmenhb 2008-10-14T07:29:32Z 2008-10-25T18:56:24Z <p>i've never created a shopping cart, or forum in php. aside from viewing and analyzing another persons project or viewing tutorials that display how to make such a project or how to being such a project. how would a person know how to design the database structure to create such a thing? im guessing its probbably through trial and error...</p> http://stackoverflow.com/questions/200257/how-do-you-know-how-to-design-a-mysql-database-when-creating-an-advanced-php-appl/200262#200262 17 Answer by Owen for how do you know how to design a mysql database when creating an advanced php application? Owen 2008-10-14T07:33:18Z 2008-10-14T07:44:04Z <p>you should read up and understand the basics of <a href="http://en.wikipedia.org/wiki/Database_normalization" rel="nofollow">normalization</a>. for most projects, normalizing to 3rd normal form will be just fine. there are always certain scenarios when you want more or less normalization, but understanding the concepts behind it will allow you to think about how your database is structured in a normalized format.</p> <p>here's a very basic example of normalizing a table:</p> <pre><code>students student_id student_name student_class student_grade </code></pre> <p>a pretty standard table containing various data, but we can see some issues right away. we can see that a student's name is dependant on his ID, however, a student may be involved in more than one class, and each class would conceivably have a different grade. we can then think about the tables as such:</p> <pre><code>students student_id student_name class class_id class_name </code></pre> <p>this is not bad, now we can see we have various students, and various classes, but we haven't captured the student's grades.</p> <pre><code>grades student_id class_id grade </code></pre> <p>now we have a 3rd table, which allows us to understand the relation between a particular student, a particular class, and a grade associated with that class. from our first initial table, we now have 3 tables in a normalized database (let's assume we don't need to normalize grades any further for sake of example :) )</p> <p>a few things we can glean from this very basic example:</p> <ul> <li>our data is all tied to a key of some sort (student_id, class_id, and student_id + class_id). these are unique identifiers within each table.</li> <li>with our keyed relations, we're able to relate information to each other (how many classes is student #4096 enrolled in?)</li> <li>we can see our tables will not contain duplicated data now (think about our first table, where student_class could be the same value for many students. if we had to change the class name, we'd have to update all the records. in our normalized format, we can just update class_name of class_id)</li> </ul> http://stackoverflow.com/questions/200257/how-do-you-know-how-to-design-a-mysql-database-when-creating-an-advanced-php-appl/200273#200273 3 Answer by Joe Scylla for how do you know how to design a mysql database when creating an advanced php application? Joe Scylla 2008-10-14T07:39:04Z 2008-10-15T01:13:50Z <p>The main technique you can learn about database design is called <a href="http://en.wikipedia.org/wiki/Database_normalization" rel="nofollow">Database Normalization</a>. </p> <p>Database normalization has it's limits, especially if you have many transactions. At some point you may be forced to <a href="http://en.wikipedia.org/wiki/Denormalization" rel="nofollow">Denormalize</a>.</p> <p>But imho it's always better to start with a normalized database design.</p> http://stackoverflow.com/questions/200257/how-do-you-know-how-to-design-a-mysql-database-when-creating-an-advanced-php-appl/210337#210337 1 Answer by rlorenzo for how do you know how to design a mysql database when creating an advanced php application? rlorenzo 2008-10-16T21:11:33Z 2008-10-16T21:11:33Z <p>I would also recommend using a visual editor for creating your database schema. I have recently been using: <a href="http://dev.mysql.com/workbench/" rel="nofollow">http://dev.mysql.com/workbench/</a></p> <p>Once you create a database design, have someone with more experience look it over and give you feedback. But know that as much time as you can spend designing, you will eventually have to do implementation and will find out you are missing something or could do an even better job doing it another way.</p> <p>So, design, get feedback, but don't be afraid to change.</p> http://stackoverflow.com/questions/200257/how-do-you-know-how-to-design-a-mysql-database-when-creating-an-advanced-php-appl/225619#225619 1 Answer by PaulBM for how do you know how to design a mysql database when creating an advanced php application? PaulBM 2008-10-22T12:54:56Z 2008-10-22T12:54:56Z <p>Great information from Owen there, thanks. I can't Vote Up because my reputaion is low. :) Also thanks rlorenzo, for that link, it'll be a great help for planning future databases.</p>