In some queries I noticed that selection of a table looks like
select *
from ..TableName
And this table has dbo
scheme.
So, is this the same thing as
select *
from dbo.TableName
and I can use ..
just for comfort?
What does ..
mean? Is it only acronym for dbo
or I can use it somewhere else?