|
1.2. T-SQL keywords used as identifiers will be enclosed in square brackets.
If you use field names that are T-SQL key words (e.g. USER, COLUMN, KEY and about a hundred other common words), SQL Server will return an error.
Our function will enclose all reserved words in square brackets; for example,
SELECT USER,SUM,ORDER,NAME ...
will be replaced with
SELECT [USER],SUM,ORDER,NAME ...
back
to features list
|