Help me turn these data structures into database tables - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T06:29:06Z http://stackoverflow.com/feeds/question/672635 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/672635/help-me-turn-these-data-structures-into-database-tables 0 Help me turn these data structures into database tables Daddy Warbox 2009-03-23T09:11:01Z 2009-03-23T09:36:22Z <p><strike>It's been a while since I've last tinkered with databases, and as usually my mind has slipped on what I need to do. Here's me problem:</p> <ol> <li>I have a list of entries (strings).</li> <li>Each entry has its own name and unique ID.</li> <li>Entries can share names, but not IDs.</li> <li>Entries can also have properties (strings).</li> <li>Entries can have more than one of the same property.</li> <li>Each property for each entry can have its own value (string).</li> </ol> <p>What's the best table layout for those requirements?</strike></p> <p>Okay dumb question. Thanks anyway for the help. :P</p> http://stackoverflow.com/questions/672635/help-me-turn-these-data-structures-into-database-tables/672685#672685 2 Answer by ck for Help me turn these data structures into database tables ck 2009-03-23T09:29:51Z 2009-03-23T09:29:51Z <p>Entry table, with Name and UniqueID (PK)</p> <p>Property Table, with PropertyName and ID (PK)</p> <p>EntryProperty Table with EntryID (FK), PropertyID (FK), UniqueID (PK), Value.</p> http://stackoverflow.com/questions/672635/help-me-turn-these-data-structures-into-database-tables/672686#672686 1 Answer by dr Hannibal Lecter for Help me turn these data structures into database tables dr Hannibal Lecter 2009-03-23T09:30:14Z 2009-03-23T09:30:14Z <blockquote> <p>Well, the problem for me is figuring out how to handle entries having multiple duplicate properties. Do I create a new table for each entry or what?</p> </blockquote> <p>Well, no :-)</p> <p>Assuming you have an Entry and Property table, my guess is that you would need a table with the following columns:</p> <pre><code>id, entry_id, property_id, property_value, timestamp </code></pre> <p>Does that help or did I get it all wrong?</p> http://stackoverflow.com/questions/672635/help-me-turn-these-data-structures-into-database-tables/672694#672694 1 Answer by Ignacio Vazquez-Abrams for Help me turn these data structures into database tables Ignacio Vazquez-Abrams 2009-03-23T09:35:16Z 2009-03-23T09:35:16Z <pre><code>CREATE TABLE entries ( INTEGER id NOT NULL AUTOINCREMENT, VARCHAR(XX) name, PRIMARY KEY(id) ) CREATE TABLE properties ( INTEGER id NOT NULL AUTOINCREMENT, VARCHAR(XX) name, VARCHAR(XX) value, INTEGER entryid NOT NULL, FOREIGN KEY(entryid) REFERENCES entries (id) ) </code></pre>