Table3

Copy , paste and then run
 avatar
unknown
sql
4 years ago
206 B
4
Indexable
CREATE TABLE STUDENT(
    Student_ID number(20) primary key not null,
    Student_first_name varchar(50) not null,
    Student_second_name varchar(50) not null,
    Student_type varchar(20) not null
);
Editor is loading...