In SSMS, given the following statement,
Why is the word UID highlighted as a keyword?
Secondly, what is UID (or uid)?
Does it relate to GUIDs or User IDs or ...?
According to this answer and SQL Servers latest T-SQL reserve keyword documentation, it's not a reserved keyword. So why is it highlighted in blue?
And in case your wondering why there's no red syntax error highlighting beneath the word UID, like so:
... in the the first image above, it's because I'm selecting an existing column named "UID" from a table in a 3rd-party SQL Server database, whose architect(s) chose to name all tables' primary key columns "UID".

