Using Reserved Words For Columns In SQL Server
[SQL Server]
Generally, it is advisable not to use reserved words for your column names in Microsoft SQL Server. Or, for that matter, any other database.
Take this example:
select getdate() as Table
This will return an error:

If, however, you really, really want to use the name Table, you do it like this:
select getdate() as [Table]
This will work:

This relies on enclosing the name in square brackets - [ and ]
You can also use double quotes:
select getdate() as "Table"
As well as single quotes:
select getdate() as 'Table'
TLDR
To use reversed words as column names in Microsoft SQL Server, enclose the name in one of the following - brackets [], single quotes '' or double quotes "".
Happy hacking!