Overview Tables Views Indexes Constraints Triggers Procedures Functions Packages Sequences Index

HR


Description  Columns  Primary key  Check constraints  Foreign keys  Unique keys  Indexes  Options  Referenced by  Triggers  

JOBS

Description

jobs table with job titles and salary ranges. Contains 19 rows. References with employees and job_history table.

Columns

Column Datatype Nullable Default value Comment
JOB_ID VARCHAR2(10) N   Primary key of jobs table.
JOB_TITLE VARCHAR2(35) N   A not null column that shows job title, e.g. AD_VP, FI_ACCOUNTANT
MIN_SALARY NUMBER(6,0) Y   Minimum salary for a job title.
MAX_SALARY NUMBER(6,0) Y   Maximum salary for a job title

Primary key

Primary key Columns
JOB_ID_PK JOB_ID

Check constraints

Check constraint Check condition
JOB_TITLE_NN "JOB_TITLE" IS NOT NULL

Indexes

Index Type Uniqueness Columns
JOB_ID_PK NORMAL UNIQUE JOB_ID

Options

Option Setting
Clustered N
Generated by Oracle N
Index Organized N
Logging Y
Partitioned N
Temporary N
Nested N

Referenced by

Referenced by Constraint
EMPLOYEES EMP_JOB_FK
JOB_HISTORY JHIST_JOB_FK


Generated by
OraDoclet, Copyright © Oracle Corporation 2005      Last updated: 01.01.2005