0

I know some patterns to DB table schema:

  • one-one: same table.

  • one-many: Having 'many' table's primary key a member of 'one' table.

  • many-many: Having a new relationship table contains both table's primary key.

What are some other patterns?

2
  • The question is "what is the question?" It's all very meta. Commented Jun 5, 2009 at 16:02
  • @Pesto: Should we add the meta tag? Commented Jun 5, 2009 at 16:11

2 Answers 2

1

How about?:

Sign up to request clarification or add additional context in comments.

Comments

0

I wouldn't consider those 'patterns' since the term patterns are used for more or less complex problem solutions in a given technology, including some notion on the circumstances in which one pattern in superior to another applicable pattern.

The examples you are giving are more the very basic building blocks of relational database schema design. If you want to learn more about this I suggest search for 'database normalization'.

Some terms that could be considered patterns in the database world are:

star schema snowflake schema Entity-attribute-value model

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.