in SQL Server we denote unicode string literals thus:
declare @s nvarchar(max)
select @s = N'test'
however, we can also use double quotes... so we should be able to do this:
set quoted_identifier off
declare @s nvarchar(max)
select @s = N"test"
but there I've gone wrong:
Msg 102, Level 15, State 1, Line 2 Incorrect syntax near 'test'.
what is the correct form?