SQL Server Left Joins
This post gives an example of using left joins on a series of tables in the Itzik Ben-Gan […]
This post gives an example of using left joins on a series of tables in the Itzik Ben-Gan […]
This example comes from Ikzik Ben-Gan’s book T-SQL Querying. Subqueries are used to nest queries. Subqueries is a […]
In Itzik’s book T-SQL Querying, published by Microsoft Press in 2015, he uses several tables as examples. Here […]
There exists a SQL Server online course at Udemy.com that prepares you for the 70-461 exam. The couse […]
Common table expressions (CTEs) are another kind of table expression that like derived tables are visible only to […]
You can create a table using the SSMS GUI, or you can use T-SQL code. This post describes […]
This post, LibreOffice Draw, includes a PDF file that is a LibreOffice diagram saved as a PDF file. […]
This post describes how you can sum a column with a data type of Time in SQL Server. […]
The objective for this post is to learn how to combine (merge) more than one Excel worksheet file […]
This post is a discussion of the basics of indexes in SQL Server. It is based partly on […]
Ranking calculations are implemented in T-SQL as a window function. When you rank a value you do not […]
In T-SQL, COUNT returns the number of items in a group. COUNT works like the COUNT_BIG function. The […]