Table: dbo.Employee_W2_Box_14_Override | |||
The table used to store the overrides for an Employee's box 14 information. | |||
Columns | |||
Name | Type | Constraints | Description |
employee_w2_box_14_override_KEY | int (4) | NOT NULL | Primary key. |
employee_KEY | int (4) | NOT NULL | Foreign key into the Employee table. |
box_14_description | nvarchar (50) | NOT NULL | Box 14 description. |
amount | decimal (9, 2) | NOT NULL | Override for the Box 12 amount. |
w2_override_type_KEY | int (4) | NOT NULL | The foreign key into the W2_Override_Type table. |
Primary key | |||
Name | Columns | Description | |
PK_Employee_W2_Box_14_Override | employee_w2_box_14_override_KEY | ||
Unique constraints | |||
Name | Columns | Description | |
UK_Employee_W2_Box_14_Override$employee_KEY$box_14_description$w2_override_type_KEY | employee_KEY, box_14_description, w2_override_type_KEY |
Foreign keys | |||
Name | Columns | Referenced table | Description |
FK_Employee_W2_Box_14_Override__Employee__employee_KEY | employee_KEY | Employee (employee_KEY) | |
FK_Employee_W2_Box_14_Override__W2_Override_Type__w2_override_type_KEY | w2_override_type_KEY | W2_Override_Type (w2_override_type_KEY) |