-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstudent.sql
24 lines (19 loc) · 1.04 KB
/
student.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
create table student (
id raw(16) default sys_guid() primary key,
first_name varchar2(50) not null,
last_name varchar2(50) not null,
email varchar2(100),
major varchar2(20) not null,
credits number(10),
gpa number(3,2) check (gpa between 0.00 and 4.00)
);
insert into student (first_name, last_name, email, major, credits, gpa)
values ('Alice', 'Cooper', '[email protected]', 'Computer Science', 90, 3.8);
insert into student (first_name, last_name, email, major, credits, gpa)
values ('Jane', 'Smith', '[email protected]', 'Biology', 75, 3.6);
insert into student (first_name, last_name, email, major, credits, gpa)
values ('Michael', 'Johnson', '[email protected]', 'Mathematics', 110, 3.9);
insert into student (first_name, last_name, email, major, credits, gpa)
values ('Emily', 'Davis', '[email protected]', 'History', 45, 3.4);
insert into student (first_name, last_name, email, major, credits, gpa)
values ('William', 'Brown', '[email protected]', 'Physics', 120, 3.7);