SQLServerCentral Article

SQL Server 2022 Build List

This is a list of the builds for SQL Server 2022. There are other build lists available here. A list of all the builds that I can find and install on my Build VM. If you find a build not listed here, please let the webmaster know (webmaster at sqlservercentral.com). All builds are listed in reverse […]

Blogs

Speaking at the TechnoSecurity and Digital Forensics East Conference

By

The Techno Security & Digital Forensics Conference (East) runs from June 3-5, 2025, this...

Techorama 2025 – Slides

By

You can find the slides for my session Building the €100 data warehouse with...

Query Hints and Estimated Plans

By

I’m working on an update to my Query Performance Tuning book for SQL Server...

Read the latest Blogs

Forums

SQL Cookbook: Query Solutions and Techniques for All SQL Users

By Steve Jones - SSC Editor

Comments posted to this topic are about the item SQL Cookbook: Query Solutions and...

SQL Server 2022 Query Performance Tuning

By Grant Fritchey

Comments posted to this topic are about the item SQL Server 2022 Query Performance...

Architecting Power BI Solutions in Microsoft Fabric

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Architecting Power BI Solutions in...

Visit the forum

Question of the Day

CONCAT_WS

What output do the queries produce?

SET CONCAT_NULL_YIELDS_NULL ON;
SELECT CONCAT_WS ('-', NULL, NULL);
SET CONCAT_NULL_YIELDS_NULL OFF;
SELECT CONCAT_WS ('-', NULL, NULL);

See possible answers