I need to query a table that has a space name in it. (I know I know - it wasn't me that named it).
I've tried these three versions:
select *
from [Price Index]
select *
from "Price Index"
select *
from 'Price Index'
And I always get the error: Invalid object name 'Price Index'.
What is the correct syntax?
TIA
I've tried these three versions:
select *
from [Price Index]
select *
from "Price Index"
select *
from 'Price Index'
And I always get the error: Invalid object name 'Price Index'.
What is the correct syntax?
TIA