2011-11-14
1,996 reads
2011-11-14
1,996 reads
2011-10-12
2,215 reads
2011-10-05
2,465 reads
The third article in our series on normalization from Tom Thomson continues with an explanation on what constitutes third normal form.
2011-07-28
8,462 reads
In this article Tom Thomson takes a look at what second normal form means, how it is violated, and how you can fix it. This is part of our normalization series.
2011-07-14
8,095 reads
Learn the basics of first normal form and what that means to a database designer from Tom Thomson.
2011-06-30
10,897 reads
2011-01-11
2,756 reads
2010-06-24
3,996 reads
2010-04-23
3,910 reads
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
By Steve Jones
One of the things a customer asked recently about Redgate Data Modeler was how...
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
Comments posted to this topic are about the item Removing TDE
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers