MOCKSTACKS
EN
Questions And Answers

More Tutorials









SQLServer Table Design

Properties of a well designed table


A true relational database must go beyond throwing data into a few tables and writing some SQL statements to pull
that data out.

At best a badly designed table structure will slow the execution of queries and could make it impossible for the database to function as intended.

A database table should not be considered as just another table; it has to follow a set of rules to be considered truly relational. Academically it is referred to as a 'relation' to make the distinction.

The five rules of a relational table are:

1. Each value is atomic; the value in each field in each row must be a single value.

2. Each field contains values that are of the same data type.

3. Each field heading has a unique name.

4. Each row in the table must have at least one value that makes it unique amongst the other records in the table.

5. The order of the rows and columns has no significance.


A table conforming to the five rules:

Rule 1: Each value is atomic. Id, Name, DOB and Manager only contain a single value.

Rule 2: Id contains only integers, Name contains text (we could add that it's text of four characters or less), DOB
contains dates of a valid type and Manager contains integers (we could add that corresponds to a Primary Key field in a managers table).

Rule 3: Id, Name, DOB and Manager are unique heading names within the table.

Rule 4: The inclusion of the Id field ensures that each record is distinct from any other record within the table.


A badly designed table:

Rule 1: The second name field contains two values - 2 and 1.

Rule 2: The DOB field contains dates and text.

Rule 3: There's two fields called 'name'.

Rule 4: The first and second record are exactly the same.

Rule 5: This rule isn't broken.


Conclusion

In this page (written and validated by ) you learned about SQLServer Table Design . What's Next? If you are interested in completing SQLServer tutorial, your next topic will be learning about: SQLServer Synonyms.



Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


Share On:


Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.