Table3

Copy , paste and then run
Anonymous
sql
10/11/2021 6:31 PM
276 B
11
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...