Question: write out the DDL statement, but also add a column level primary key constraint to the Id field. CREATE TABLE emp (id NUMBER(7), last_name VARCHAR2(25),
write out the DDL statement, but also add a column level primary key constraint to the Id field.
CREATE TABLE emp
(id NUMBER(7),
last_name VARCHAR2(25),
first_name VARCHAR2(25),
dept_id NUMBER(7) )
Step by Step Solution
There are 3 Steps involved in it
You can create the table emp with a columnlevel primary key constraint on ... View full answer
Get step-by-step solutions from verified subject matter experts
