SQL Fundamentals - Practice 09
SQL Fundamentals - Practice 09
1. Create the DEPT table based on the following table instance chart. Place the
syntax in a script called lab_09_01.sql, and then execute the statement in the script to
create the table. Confirm that the table is created.
Column Name ID NAME
Key Type Primary key
Nulls/Unique
FK Table
FK Column
Data type NUMBER VARCHAR2
Length 7 25
2. Populate the DEPT table with data from the DEPARTMENTS table. Include only columns
that you need.
3. Create the EMP table based on the following table instance chart. Place the syntax in
a script called lab_09_03.sql, and then execute the statement in the script to create the
table. Confirm that the table is created.