Sometimes, as when testing a table in a Microsoft SQL Server database, you need to reset an identity column to its initial seed value, typically one. During testing, you populate the table with data, ...
Create a table Categories with a CategoryID as PRIMARY KEY and a CategoryName as UNIQUE. create table Categories (CategoryID int primary key, CategoryName varchar (50) unique) --10 Explain the purpose ...