I am maintaining a database created by another person in SQL Server. In one table I found a column whose name is between square brackets. The name of the field is desc and it is stored in the table as [desc]. The other fields are stored without square brackets. Is there any special reason/convention behind this choice?
The applications built on top of the Database are developed either in C# or VB.NET.
Thanks
[desc], are you sure? What tool is telling you that? If you've used (say) SQL Mgmt Studio to make aCREATEscript, it will be making runnable T-SQL, which needs[]around this reserved word - but the name of the column (not "field") isdesc, as can be seen by queryingsys.columns. – AakashM Sep 27 '11 at 13:50