Hi guys,
I've started learning SQL after spending several years in the industry. I've got a table defined ...
CREATE TABLE [dbo].[Computer](
[Id] [int] NOT NULL,
[Name] [nchar](10) NULL,
PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Now I don't want anyone having to insert a PK when inserting, I want the DB internally to do this. Is it possible?