How to custom prefix "N" for unicode with nvarchar variable in SQL Server? For example:
Given this variable:
declare @Query1 nvarchar(max)
I can assign him the following:
set @Query1 = N'لاحظات'
But what if I want to use N@Query1 somewhere?
sql sql-server-2008
Nijesh patel
source share