Troubleshooting problems with joins in SQL Server 2017 If you have problems with joins in SQL Server 2017, review this troubleshooting checklist to find potential solutions. 1. You may receive an incorrect result when you run a query that uses a parallel execution plan with Merge Semi join. This is SQL Server 2017 bug. To work around this problem, you...
Tag: inner join
Types of Join in SQL Server – (Part 1)
Types of Join in SQL Server – Part 1 Author: Basit A. Farooq In this two part article series, I will discuss different types of joins available in SQL Server. You use a join to combine data from different tables into a single result set. Joins most commonly use foreign key relationships. Some important points about joins include: Joins are...