Supprt Quoted identifiers for prompting
If you go
SELECT * FROM sys.tables AS t
or
SELECT * FROM sys.tables AS [t]
then intellisense will happily carry on working correcly, with t. now showing object members.
However
SELECT * FROM sys.tables AS "t"
and
SELECT * FROM sys.tables AS 't'
both cause the intellisense to give up for the rest of the batch. All four identifier markups are valid (for now) and should be treated equally...
1
vote
Dave Dustin
shared this idea
SQL Prompt 6.3 resolves quoted identifiers correctly