NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

1.
a.connect to sample
create table USTStudent(
StudentId integer not null,
StudentName varchar(30),
Address vachar(30)
Subject_Id Char(10) not null,
Mark Integer
);

create table USTSubject(
Subject_Name varchar(30) not null,
Subject_CODE Char(10) not null
);

Alter table USTSubject
Add constraint Subject_Code_pk primary key(Subject_Code);
Alter table USTSubject
Add constraint StudentId_pk primary key(StudentId);
Add constraint Subject_ID_fk foreign key(StudentId) references USTSubject(Subject_Code)
Add constraint Mark_ck check(Mark between 40 to 100);
Insert into USTStudents values(
('9400074', 'JASON', '9', 'Ozie Hall', 'MA4545', '90'),
('9200020', 'TEDDY', '90', 'Second Hall', 'MA4545', '65'),
('9875620', 'LESIE', '87', 'River Road', 'CS1200', '78'),
('9200021', 'TOM' , '25', 'First Hall', 'MA4545', '75'),
('9875630', 'SUSAN', '80', 'River Dale', 'CS1200', '78')
);

Insert into USTSubjects values(
('CS1200', 'Information Systems'),
('MA4545', 'The Diversity of Life'),
('CS1300', 'Intro to Computing'),
('CH8794', 'Intro of Chemistry'),
('MA1235', 'Pure Mathematics')
);

Insert into USTStudents values(
('8745520', 'BEN', '79', 'Main Street', 'CS8794', 'Null'),
('9841220', 'WENDY', '124', 'Long Hall', 'CS1200', '85'),
('984120', 'WENDY', '124', 'Long Hall', 'CS1200', '85')
);

select * from USTStudents;
select * from USTSubject;
update USTStudents
set Subject_ID='CS1200'
where Student_ID='9400074';
Select Address from USTStudents
where Address ='%Hall';
Select Mark from USTStudents
where Mark >=65;
Select Student_ID from USTStudents
where Mark=75;
Select Student_ID,Student_Name from USTStudents
where Subject_Code='CS1200';
Select Sum(Mark) from USTStudents as TotalScores
group by Subject_ID;





A)
db2start
db2 connect to sample


B)
db2 "create table uststudent
(studentid integer not null,
studentname varchar(30),
address varchar(30),
subject_id char(10) not null,
mark integer)"
db2 "create table ustsubject
(subject_code char(10),
subject_name varchar(30),
primarykey (subject_code))"


C)
db2 alter table ustsubject
add constraint pk primary key(subject_code);
db2 alter table
add constraint pk primary key(student_id);
add constraint fk foreign key(subject_id) referrences ustsubject(subject_code);
add constraint ck check (Mark between 40 to 10);



D)
db2 "insert into uststudent
(student_id,student_name,address,subject_id,mark) values
('9400074','JASON','9, Ozie Hall','MA4545','90'),
('9200020','TEDDY','90, Second Hall','MA4545','65'),
('9875620','LESIE','87, River Road','CS1200','78'),
('9200021','TOM','25, First Hall','MA4545','75'),
('9875630','SUSAN','80, River Dale','CS1200','78')"

db2 "insert into ustsubject
(subject_code, subject_name) values
('CS1200','Information Systems'),
('MA4545','The Diversity of Life'),
('CS1300','Intro to Computing'),
('CH8794','Intro of Chemistry'),
('MA1235','Pure Mathematics')"

E)
db2 "Insert into USTStudents
student_id,student_name,address,subject_id,mark) values
('8745520', 'BEN', '79', 'Main Street', 'CS8794', 'Null'),
('9841220', 'WENDY', '124', 'Long Hall', 'CS1200', '85'),
('984120', 'WENDY', '124', 'Long Hall', 'CS1200', '85')"

F)

     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.