SQL Server IndexesThis post is a discussion of the basics of indexes in SQL Server. It is based partly on […] February 18, 2018 in SQL Server tagged index / indexes by Mike
SQL Server Ranking Window FunctionsRanking calculations are implemented in T-SQL as a window function. When you rank a value you do not […] February 17, 2018 in SQL Server tagged window / rank / ranking / over / SQL Server Window Functions by Mike
SQL Server COUNTIn T-SQL, COUNT returns the number of items in a group. COUNT works like the COUNT_BIG function. The […] February 16, 2018 in SQL Server tagged sql / distinct / count / SQL Count by Mike
SQL Server Data Validation Part 33. Fruit Code and Fruit Variety Code – Case 1 This is a continuation of the post called […] February 14, 2018 in SQL Server tagged duplicates / data validation / SQL Server Data Validation by Mike
SQL Server Data Validation Part 22. Fruit Name and Fruit Code – Case 1 This post is a continuation of SQL Server Data […] February 9, 2018 in SQL Server tagged data / validation / data validation / SQL Server Data Validation by Mike
SQL Server Data Validation IntroductionThis post is about validating data in a single table. We have gathered data from the Internet and […] February 9, 2018 in SQL Server tagged validation / group by / data validation / cte / SQL Server Data Validation by Mike
SQL Server Aggregate Window FunctionsAggregate window functions in SQL Server are similar to grouped functions (SUM, AVG and so on) except that […] January 27, 2018 in SQL Server tagged function / over / group by / window / partition / cte / nested cte / select into / SQL Server Window Functions by Mike
SQL Server Window FunctionsWindow functions are used in SQL Server to perform data-analysis calculations. A data-analysis calculation is one you apply […] January 27, 2018 in SQL Server tagged aggregate / group by / window / rank / ranking / offset / statistical / analysis / SQL Server Window Functions by Mike
SQL Server CollationCollation is not a simple topic in SQL Server. There is an article written by Robert Sheldon called […] January 6, 2018 in SQL Server tagged collation / sql by Mike
SQL Server Import Data from a Text File Part 4This part of our multi-part series discusses BULK INSERT. Here we focus in on this command. Microsoft’s Books […] January 3, 2018 in SQL Server tagged import / insert / bulk / French / characters / SQL Server Import by Mike
SQL Server Order By For XMLThis post considers a couple of SQL Server statements: Order By and For Xml. If you have a […] December 26, 2017 in SQL Server tagged for / xml / order by Mike
SQL Server Insert Into Select Part 1This post discusses how to insert data from one table into another existing table. The second table must […] December 22, 2017 in SQL Server tagged insert / table / into / select / another / existing by Mike