What is SQL Server Identifier?
Everything in a SQL server can have an identifier. Be it server, view, trigger, column etc. any database object name is an identifier. Identifiers may or may not be required for all objects.
Example:CREATE TABLE table_name
(ID INT PRIMARY KEY
Note varchar(20));
Here, ID and Note are two identifiers for the columns. Constraints like Primary key need not have an identifier.