SQL Server CaseThe SQL Server Case statement is best explained by example. What Case allows us to do is get […] August 11, 2017 in SQL Server tagged case / when by Mike
SQL Server IntersectINTERSECT says “give me what’s common to both” as the word itself implies. It is the intersection of […] August 11, 2017 in SQL Server tagged intersect by Mike
SQL Server ExceptEXCEPT is available in SQL Server starting with SQL Server 2008. EXCEPT returns distinct rows by comparing the […] August 11, 2017 in SQL Server tagged database / sql / table / except by Mike
SQL Server Integer Data TypesHere is a table showing the integer types of SQL Server from the Microsoft website. INT goes up […] August 11, 2017 in SQL Server tagged integer / data type by Mike
SQL Server UnionThis article is discussing the combining of two or more tables using UNION or UNION ALL into one […] August 11, 2017 in SQL Server tagged union / order / order by / combine / union all / sort by Mike