SQL Create Table My_staff (
SQL Create Table My_staff (
2 staffid NUMBER(4),
3 staffname VARCHAR2(24),
4 address VARCHAR2(24),
5 phone NUMBER(4), -- Assuming a maximum of 4 digits for phone number
6 CONSTRAINT pk_staff PRIMARY KEY (staffid)
7 );
Table created.
Table created.
Table created.
Table created.
Table created.
Table created.
SQL>