Barney Lawrence shows off a nice enhancement to T-SQL in SQL Server 2022:
With SQL Server 2022 came a much requested additional feature added from the SQL standards – IGNORE_NULLS. You can probably guess what it does. Drop in IGNORE_NULLS after your function and you can blur the non null values over those gaps giving us results like this:
Read on for the pre-2022 version of the query and what it does, versus the version with IGNORE_NULLS
specified. This small flag is extremely helpful in time series statistical analysis and I’m glad it’s in SQL Server now.