5 Things a developer should know about databases

 

Database Normalization

Theoretical versus real-world

There is not a strong need for developers to know the theoretical definition of 1st thru 5th normal form, but there needs to be an understanding of some design practices. The keys are:

  1. No Duplicate data in columns in one table
  2. Relationships built as foreign keys
  3. Primary Key to identify a row
  4. Learn Many to Many relationships (this could be a whole blog)

Always look for natural key when using identity for Primary Key

The first of which is a primary key. Over the years, I have finally grasped the understanding of using an Identity column as the primary key but always design a table with a natural key. The following example that shows the difference in a Customer table.

The key is that I understand that the Identity column is not the column used to locate a customer, but the the Customer Name is really how we identify a customer. From my experience, I saw the identity column come into software development for 3 reasons:

  1. The int column takes up less space in non-clustered indexes
  2. It helps with lookups in Objects for Object Oriented coding
  3. The joins are faster and helps with related tables when used as part of the related table’s primary and/or foreign key

Lookup versus Parent-Child tables

The Customer table can be can be considered a Lookup table for customers that have Orders. The relationship between an Order Header and Order Detail would be a Parent-Child relationship. The Order Header and Detail still need to have a Natural Key just like the Customer table even though Identity is used strongly in these tables.

The example above show OrderID as the primary key of the OrderHeaders table, but there is a natural key to identify rows which is CustomerID + OrderDate. The OrderID column is carried down into the OrderDetail table. The column is combined with ProductID to form the primary key of the table.

Data Types

char vs. varchar

Remember that using a char data type will use the space required in the size in the data pages of ever row, where varchar will only take up the space used in the actual data in the column for that row.

Money not decimal

The money data type is a much better option for dollar amounts in a database than trying to specify the size and number of decimal places in a decimal data type.

nvarchar or nchar

The use of nvarchar and nchar are for storage of all Unicode characters while char and varchar are for non-Unicode characters. The nchar/nvarchar data types take up 2 times the space for a column in each row. In 25 years of IT work, I have never seen a need for Unicode characters, though some would say differently.

integers – tiny, small, int and bigint

 

The integer data type now have various size that are different in space in the rows of a table. If you know that a lookup table only has 10 possible rows, you do not need to use int or bigint for the ID column. You should go ahead and use smallint. See Books Online for more information.

Indexes

 

Learn Primary Key defaults to Clustered

As we saw in the diagram above, the CustomerID was the primary, clustered index of the Customer table without even specifying clustered. This is by default for SQL Server. You can change this to be a non-clustered primary key index, but you should always have a clustered index on a table in a transaction type database (OLTP). You could have easily specified the Unique Index on CustomerName as Clustered but be warned. The clustered index columns are included in all non-clustered indexes on a table.

Non-clustered indexes

The non-clustered index is usually created for improving the performance of queries that request data from a different column than the primary key. In the example above, a query on CustomerName in a WHERE clause of a query can return results faster because of the Unique Non-Clustered index. Another place to look for non-clustered indexes is on foreign key columns of related tables.

Overuse of Include clause

Creating covering indexes used to require including the additional columns in the actual index for help with eliminating a lookup in a query plan. The addition of the INLCUDE clause in SQL Server now lets you include additional columns at the leaf level of the index so the additional columns do not have to take of space in the tree of the index. Watch out not to overuse this option, because you can end up with more data space used in indexes than the table itself. Also, I have seen where include indexes cause Deadlocking, which is not a good thing.

T-SQL

Do not use SELECT * (specify columns)

Using SELECT * causes a couple of issues. First, it might take a full scan of the table (Clustered Index Scan). This has higher IO and Memory usage than just specifying the columns you need. Second, if someone adds additional columns to the table, it can break views and code that are not equipped to handle the additional columns

Learn difference between LEFT and INNER

Joins in T-SQL go back to the idea of Database Normalization. The INNER JOIN will return all the rows that match in both tables. The LEFT will return all rows from the table specified in the FROM part of the T-SQL and returns data to the columns specified in the JOIN table that have a match. The rows that do not have a match will have Nulls in those specified columns.

New Features of SQL Server

Windows Functions

Every new version of SQL Server comes out with improvements and additions. Yes, Microsoft does actually improve our lives. I am extremely excited to use the ROW_NUMBER() OVER PARTITION to find the latest or earliest rows in a data set. This eliminates the need to use MAX on a Date in a sub-query to join to the main query to find some matching data that is not related to the keys of the tables. There is even more functions like RANK, DENSE_RANK and NTILE.

Common Table Expressions (replaces cursors in some cases)

If you want to learn something really cool, try common table expressions. This can eliminate the use of CURSORS to loop through rows with T-SQL code. It will get you on path to understanding Set Based querying of your database.

Conclusion

There are many of features of SQL Server that a developer should learn, and these are just some of the common items I see new developers lack in their experience that are usually the first for me to help as a co-worker. Happy programming!!!

kalyan K. and Mike Bingle and Jerry Hubacek, You are correct. There is much more. These are the one's I have seen in the last 5 years that some developers (not all) have not understood or practiced. I will try to expand in another post, especially about surrogate and natural keys as well as OLTP versus OLAP structures. Thanks for comments and conversation.

Like
Reply

Good points, may be you should have this as a base and add on some additional topics. Great start though.

Like
Reply

There's a lot more that should be know, but I suppose the author just wanted to make a point. However, it should have included a surrogate vs. natural key assignment... this is very important in many instances.

Like
Reply

Good points. Good conversation.

Like
Reply

Good and helpful "back to basics" my friend

Like
Reply

To view or add a comment, sign in

More articles by Thomas LeBlanc

  • Scale Down Fabric SQLDB to vCores 4

    When viewing Compute Units in the Fabrics Capacity Metrics App, SQLDB seems to be a large user of compute - mainly with…

    1 Comment
  • Fabric/Power BI Tenant Settings to Update

    When implementing a new capacity for Power BI or Fabric, there are some tenant settings that need your immediate…

    2 Comments
  • Fabric Notebooks - New Connections (Public Preview)

    Microsoft just recently added connections to Fabric Notebooks. NOTE: It is in Public Preview (as of 2/24/2026), so I…

  • Enable Claude in Copilot

    I saw an email today about Claude and Copilot. So, I tried to enable in my own tenant.

  • Using DAXStudio to find columns and table sizes

    I really like DAXStudio's ability to see the size and scope of a Power BI Semantic Model. DAXStudio View Metrics The…

    3 Comments
  • Power BI Performance Best Practices - Chapter 4

    Usage Metrics Chapter 4 starts the second section of this book - Performance Analysis, Improvement, and Management. In…

  • Power BI Performance Best Practices - Chapter 2

    Summary of Chapter: Exploring Power BI Architecture and Configuration This chapter dives into the architectural choices…

    3 Comments
  • Power BI Performance Best Practices - Chapter 1

    This chapter emphasizes the need for a comprehensive approach to performance management in analytics solutions…

  • Fabric Database - I can create a Primary KEY!!!

    As a friend and I were going through some features of Fabric Database (preview). I tried to create a primary key on a…

    2 Comments
  • Fabric Overage

    The Fabric Capacity Metrics App can provide useful information for monitoring a Fabric or Premium capacity. The image…

Others also viewed

Explore content categories