When writing queries in SQL Server, I frequently use NVARCHAR strings that start with N'. However, after typing N', the auto-close feature doesn't seem to work, as the second single quote doesn't ...
WITH unrelated AS (SELECT 'a') SELECT JSON ([json_object('foo', 'bar')]); The error message mentions json_extract. But this function is not used at all, and the error ...