I have created a table using this small script
CREATE TABLE Employee
(
Empid smallint not null,
Lname nvarchar(50) null,
Fname nvarchar(50)null,
City nvarchar(50) null,
DOB datetime null,
JobNum smallint not null
)
I then have created a record using this script
INSERT INTO Employee (Empid...