How to user prefix 'N' for unicode with nvarchar variable in SQL Server? For example:
Given this variable:
declare @Query1 nvarchar(max)
I can assign to it like this:
set @Query1 = N'لاحظات'
But what if I want to use N@Query1
somewhere?