Previous |
Next |
This topic shows how to use the CREATE
TABLE
statement to create the EVALUATIONS
and SCORES
tables.
The CREATE
TABLE
statement in the following example creates the EVALUATIONS
table.
Creating the EVALUATIONS Table with CREATE TABLE
CREATE TABLE EVALUATIONS ( EVALUATION_ID NUMBER(8,0), EMPLOYEE_ID NUMBER(6,0), EVALUATION_DATE DATE, JOB_ID VARCHAR2(10), MANAGER_ID NUMBER(6,0), DEPARTMENT_ID NUMBER(4,0), TOTAL_SCORE NUMBER(3,0) );
Result:
Table created.
The CREATE
TABLE
statement in the following example creates the SCORES
table.
Creating the SCORES Table with CREATE TABLE
CREATE TABLE SCORES ( EVALUATION_ID NUMBER(8,0), PERFORMANCE_ID VARCHAR2(2), SCORE NUMBER(1,0) );
Result:
Table created.
In SQL Developer, in the navigation frame, if you expand Tables, you can see the tables EVALUATIONS
and SCORES
.
If you select a table in the navigation frame, and then click the tab SQL in the right frame, the SQL pane shows the SQL statement that created the table.