sp112_postings
Â
Table Definition
Field | Type | Default | Nullable |
---|---|---|---|
employee_no | number(9) | Â | |
team_no | number(9) | Â | |
posting_type | number(1) | Â | |
start_date | date | Â | |
end_date | date | Â |
Keys
primary key (employee_no, start_date)Â
foreign key (employee_no) references sp210_employees (employee_no)Â
foreign key (team_no) references sp250_teams (team_no)
foreign key (posting_type) references sp286_posting_types (posting_type)
Column Descriptions
Field | Description |
---|---|
employee_no | Employee identifier. |
team_no | Team identifier. |
posting_type | Type of assignment: 0 - permanent 1 - loan |
start_date | Date on which the assignment commences. Uses employee's Time Zone. |
end_date | Date on which the assignment ends. If this column is null then the assignment is taken to continue indefinitely. Uses employee's Time Zone. |
Â
Â