In SQL Server what's the difference between selecting a column as Year and [Year]? -
do add '[]' differentiate system defined keyword our own ... ? or there other reason behind using '[]'? thanks!
the use of square brackets in t-sql allow use reserved words object names or aliases.
however, recommend not using reserved words begin with.
here prefered method of avoiding use of reserved words.
Comments
Post a Comment