I have been reading SQL best practice examples and notice that when filtering a nvarchar column using the where clause, it is best practise to specify the keyword N prior to the text being searched.
Example: where column1=N'text'
In above example I am filtering column1 (nvarchar column) on the string 'text'.
I want to understand what is the implication of not following this method (that is - not specifying the N keyword while filtering nvarchar coloumns)