I'm fairly new to SQL Server (I'm learning with SQL Server 2008), I have this question:
I have a database "two trees test" with 2 tables in it (Employee
& Product
), this is the design of the Employee
table:
EmployeeID INT Not Null (Primary key)
FirstName nvarchar(50) Not Null
LastName nvarchar(50) Not Null
Title nvarchar(50) Not Null
HireDate date Null
BirthDate date Null
Phone nvarchar(20) Null
Status bit Not Null
You can see I have a primary key (EmployeeID
), but if I go to the edit view (so I can start to insert data), I can't see the primary key.
Thanks in advance for your help & apologies if I misspelled something (English isn't my first language), I tried to attach screenshots but I can't because I don't have 10 points yet.