I was writing a Stored Procedure
today and Wrote the line:
SELECT pv1.Version FROM depl...
and the word Version
turned blue shown below:
so I assumed it was a reserved word, so did some investigating here:
Reserved Keywords (TRANSACT-SQL)
But could not find the word Version
in the list.
Is Version
a SQL reserved word, and if not why is my word Version
displaying blue? I am using SQL Management Studio 2012
As you rightly noted,
Version
is not in the official reserved word list. It's just a "feature" of SQL Server Management Studio that is showing it in blue.There are many words like this. Here's a few more:
There are even some words that show as pink such as
LOOKUP
.