We have a vendor that decided using SQL keywords was ok for column names. I have a column named "fulltext" that I must manipulate. BOL states that you can do this but that you then must address them as quoted identifiers. I can't get anything to read this column when used in a function like LEN().
These all fail:
select top 10 len(fulltext)
from dbo.localevent (nolock)
select top 10 len([fulltext])
from dbo.localevent (nolock)
so does using set quoted identifier on and "'s
Any ideas on how to manipulate this column in a select statement?
Thanks!