What’s up with the N in front of string values?
If you have looked at pretty much any Microsoft provided T/SQL code you have probably seen an N in front of a string value when setting a variable much like this. SELECT * FROM sys.databases WHERE name = N’master’ What this N does is tell the SQL Server that the data which is being passed […]