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:

reservedWordError

If, however, you really, really want to use the name Table, you do it like this:

select getdate() as [Table]

This will work:

reservedSuccess

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!