• You need to apply the "N" when you set the value of the variable and not when you use the variable to fileter your results. This will work:

    declare @kat nvarchar(50)

    set @kat=N'M?nzild? qurum'

    select * from kateqor where Name=@kat

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **