It sets how the database server sorts (compares pieces of text). in this case:
SQL_Latin1_General_CP1_CI_AS
breaks up into interesting parts:
latin1makes the server treat strings using charset latin 1, basically asciiCP1stands for Code Page 1252CIcase insensitive comparisons so ‘ABC’ would equal ‘abc’ASaccent sensitive, so ‘ΓΌ’ does not equal ‘u’
P.S. For more detailed information be sure to read @solomon-rutzky’s answer.