I am switching from MySQL
to SQL Server
for a new job and I have encountered something I don't quite understand as I haven't encountered something like this before.
I am using the WideWorldImporters Microsoft Sample DB for reference.
Looking at the table structures I can see that it is SCHEMA_NAME.X.TABLE_NAME
Example
[WideWorldImporters].[Application].[Cities]
In MySQL
this would just be schema.tablename
Example
[WideWorldImporters].[Cities]
What is this middle part (the [Application] part in the example) exactly? I can't seem to find anything about it but that's likely because I don't know what it is to look for. It's obviously important as a select query won't work if it's removed. Can anyone explain or even name this so I can research it?