Help me turn these data structures into database tables - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T06:29:06Zhttp://stackoverflow.com/feeds/question/672635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/672635/help-me-turn-these-data-structures-into-database-tables0Help me turn these data structures into database tablesDaddy Warbox2009-03-23T09:11:01Z2009-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#6726852Answer by ck for Help me turn these data structures into database tablesck2009-03-23T09:29:51Z2009-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#6726861Answer by dr Hannibal Lecter for Help me turn these data structures into database tablesdr Hannibal Lecter2009-03-23T09:30:14Z2009-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#6726941Answer by Ignacio Vazquez-Abrams for Help me turn these data structures into database tablesIgnacio Vazquez-Abrams2009-03-23T09:35:16Z2009-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>