1. Code snippet which shows how to create a table using table variableDECLARE @TableVariable table ( EmployeeID int IDENTITY(1,1), Name VARCHAR(150) NOT NULL)2. Insert values to the Temp table variableINSERT INTO @ TableVariable (Name) VALUE (‘Ram’)INSERT INTO @ TableVariable (Name) VALUE (‘Ravi’)INSERT INTO @ TableVariable (Name) VALUE (‘Ramya’)3. Select values from the Table variable.Select * from @TableVariable