When I go to create a new Table, I'm aware that I can do something like:
CREATE TABLE Users
(
[Id] INT NOT NULL PRIMARY KEY
)
But what does the [dbo]. part mean in the following example:
CREATE TABLE [dbo].[Table]
(
[Id] INT NOT NULL PRIMARY KEY
)