Advertisement
HilalK

Untitled

Jun 18th, 2022
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. create table Employees
  2. (
  3. EmpID int not null,
  4. EmpFirst varchar(30) not null,
  5. EmpLast varchar(30) not null,
  6. WareHouseID varchar(5) not null,
  7. SSN varchar(9) not null,
  8. DOB datetime not null,
  9. StartDate datetime not null,
  10. EndDate datetime null,
  11. Address varchar(40) not null,
  12. City varchar(30) not null,
  13. State varchar(2) not null,
  14. ZIP varchar(10) not null,
  15. PositionID int not null,
  16. Memo Longtext null,
  17. Phone varchar(15) not null,
  18. Cell varchar(15) not null,
  19. Salary Decimal(19,4) null,
  20. HourlyRate decimal(19,4) null,
  21. Review datetime null,
  22. constraint pk_Employees primary key(EmpID asc)
  23. )
  24. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement