SQL Server Summarizing Data Part 3In the previous post we covered summarizing data using the following words: select, from, where, group by, having […] July 14, 2017 in SQL Server tagged group by / where / having / order by / SQL Summarizing Data by Mike
SQL Server Summarizing Data Part 2Criteria As we continue from our previous post, here is another example of summarizing data. We are continuing […] July 3, 2017 in SQL Server tagged group by / where / having / order by / SQL Summarizing Data by Mike
SQL Server Summarizing Data IntroductionFor a simple example on summarizing data, please have a look at Part 4 of this series. This […] July 3, 2017 in SQL Server tagged aggregate / summarize / group by / SQL Summarizing Data by Mike
SQL Server Strings ConcatenationNumbers and Strings If you want to concatenate a number to a string you need to know how […] July 2, 2017 in SQL Server tagged convert / cast / string / IIF / concatenation / case / Coalesce / precedence / type / data by Mike
SQL Server NULL IntroductionThe value NULL in SQL Server cannot be fully discussed in only one post. So let’s start at […] July 2, 2017 in SQL Server tagged null / zero / nothing / SQL NULL by Mike
SQL Server String TypesThere are only four types of strings. However, there are two that exist currently in SQL Server but […] July 2, 2017 in SQL Server tagged char / varchar / nchar / nvarchar by Mike
SQL Server Linked to ExcelYou can link Excel to a SQL Server database so that you can read data from SQL Server […] June 26, 2017 in SQL Server tagged excel / sql / link by Mike
SQL Server Over() Partition BySum and Over This post will discuss the first two of three components of over(). The three components […] June 18, 2017 in SQL Server tagged running balance / running total / over / total / order by Mike
SQL Server Sequential Numbers Part 3This post continues from the previous post Part 2. In this post we are working with three tables. […] June 15, 2017 in SQL Server tagged sequential / sequence / SQL Server Sequential Numbers by Mike
SQL Server Sequential Numbers Part 2This post is part 2 in our series of generating sequential numbers in SQL Server. In this post […] June 15, 2017 in SQL Server tagged exists / over / row_number / sequence / sequential / SQL Server Sequential Numbers by Mike
SQL Server Sequential NumbersA Simple Sequence We are going to first create a query that gives us sequence numbers in a […] June 14, 2017 in SQL Server tagged over / order by / row_number / SQL Server Sequential Numbers by Mike
SQL Server Check Constraints Part 3Constraints and NULLs This is a continuation of our series on check constraints. We are going to consider […] June 7, 2017 in SQL Server tagged validation / check / constraints / SQL Server Check Constraints by Mike