I'm using SQL Server Management Studio to manage my database.
The problem is that if I have a nchar(50) column in a table and I insert a value of test, what I will find in my table is this value
test<46spaces>
These spaces are making so much trouble for me. How can I stop this strange action?
Thank you