SQL Server Common Table Expressions CTE
Common table expressions (CTEs) are another kind of table expression that like derived tables are visible only to […]
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 […]
3. Fruit Code and Fruit Variety Code – Case 1 This is a continuation of the post called […]
2. Fruit Name and Fruit Code – Case 1 This post is a continuation of SQL Server Data […]
This post is about validating data in a single table. We have gathered data from the Internet and […]
Aggregate window functions in SQL Server are similar to grouped functions (SUM, AVG and so on) except that […]