SlideShare a Scribd company logo
1 of 3
Download to read offline
Create Student Project Database with insert, select, update, and delete.
Part I
- Create Student Table (Student) 10 Students
STUDENT NO TEXT (3) PRIMARYKEY
STUDENT_NAME TEXT (10)
STUDENT_DOB DATE
STUDENT_DOJ DATE
- Create Project Table (Project) 3 projects, Name, C++/Java/VB
PRJ_NO TEXT (3) PRIMARY KEY
PRJ_NAME TEXT (15)
PRJ_PLATFORM TEXT (10)
- Create Student Project Table (StudentProject) Student#, Project#, Role(programmer, manager,
or analyst)
STUDENT_NO TEXT (3)
PRJ_NO TEXT (3)
DESIGNATION TEXT (10)
PRIMARYKEY (STUDENT_NO,PRJ_NO,DESIGNATION)
FOREIGN KEY(STUDENT_NO)
FOREIGN KEY(PRJ_NO)
Solution
CREATE TABLE Student
(
STUDENT_NO CHAR(3) NOT NULL PRIMARY KEY,
STUDENT_NAME CHAR(10),
STUDENT_DOB DATE,
STUDENT_DOJ DATE
)
CREATE TABLE Project
(
PRJ_NO CHAR(3) NOT NULL PRIMARY KEY,
PRJ_NAME CHAR(15),
PRJ_PLATFORM CHAR(10)
)
CREATE TABLE StudentProject
(
STUDENT_NO CHAR(3) REFERENCES Student,
PRJ_NO CHAR(3) REFERENCES Project,
DESIGNATION CHAR(10),
PRIMARY KEY(STUDENT_NO,PRJ_NO,DESIGNATION)
)
INSERT INTO Student VALUES ('AB0',"Paul",'1992-05-12','2016-02-12');
INSERT INTO Student VALUES ('AB1',"Sam",'1992-06-11','2016-03-11');
INSERT INTO Student VALUES ('AB2',"Raul",'1992-03-11','2016-04-05');
INSERT INTO Student VALUES ('AB3',"John",'1992-07-09','2016-05-12');
INSERT INTO Student VALUES ('AB4',"Mike",'1992-02-06','2016-06-02');
INSERT INTO Student VALUES ('AB5',"Ram",'1992-01-03','2016-07-06');
INSERT INTO Student VALUES ('AB6',"Jin",'1992-05-12','2016-08-03');
INSERT INTO Student VALUES ('AB7',"Frodo",'1992-08-02','2016-09-12');
INSERT INTO Student VALUES ('AB8',"Bill",'1992-09-01','2016-11-04');
INSERT INTO Student VALUES ('AB9',"Tom",'1992-06-12','2016-12-12');
SELECT * FROM Student;
UPDATE Student
SET STUDENT_DOB='1992-03-04',STUDENT_DOJ='1991-03-04'
WHERE STUDENT_NO='AB5';
INSERT INTO Project VALUES ('XY0',"C++","Coding");
INSERT INTO Project VALUES ('XY1',"JAVA","Theory");
INSERT INTO Project VALUES ('XY2',"VB","Design");
DELETE FROM Project WHERE PRJ_PLATFORM="Design"; //It Deletes row number 3
from Project table
SELECT * FROM Project;
INSERT INTO StudentProject VALUES ('AB0',XY0,"Programmer");
INSERT INTO StudentProject VALUES ('AB1',XY1,"Manager");
INSERT INTO StudentProject VALUES ('AB2',XY2,"Analyst");
INSERT INTO StudentProject VALUES ('AB3',XY0,"Programmer");
INSERT INTO StudentProject VALUES ('AB4',XY1,"Manager");
INSERT INTO StudentProject VALUES ('AB5',XY2,"Analyst");
INSERT INTO StudentProject VALUES ('AB6',XY0,"Programmer");
INSERT INTO StudentProject VALUES ('AB7',XY1,"Manager");
INSERT INTO StudentProject VALUES ('AB8',XY2,"Analyst");
INSERT INTO StudentProject VALUES ('AB9',XY0,"Programmer");
SELECT * FROM StudentProject;

More Related Content

Similar to Create Student Project Database with insert, select, update, and del.pdf

UNIANOVA class BY trouble METHOD=SSTYPE(3) INTERCEPT=INCLU.docx
UNIANOVA class BY trouble  METHOD=SSTYPE(3)  INTERCEPT=INCLU.docxUNIANOVA class BY trouble  METHOD=SSTYPE(3)  INTERCEPT=INCLU.docx
UNIANOVA class BY trouble METHOD=SSTYPE(3) INTERCEPT=INCLU.docx
willcoxjanay
 
intro-slides.pdf very important for computer science students
intro-slides.pdf very important for computer science studentsintro-slides.pdf very important for computer science students
intro-slides.pdf very important for computer science students
sairevanth504
 
Running Head STUDENT RECORD KEEPING SYSTEM DATABASE PROJECT 1.docx
Running Head STUDENT RECORD KEEPING SYSTEM DATABASE PROJECT  1.docxRunning Head STUDENT RECORD KEEPING SYSTEM DATABASE PROJECT  1.docx
Running Head STUDENT RECORD KEEPING SYSTEM DATABASE PROJECT 1.docx
jeanettehully
 
Introducing ms sql_server_updated
Introducing ms sql_server_updatedIntroducing ms sql_server_updated
Introducing ms sql_server_updated
leetinhf
 

Similar to Create Student Project Database with insert, select, update, and del.pdf (20)

History of C#
History of C#History of C#
History of C#
 
Tactical data engineering
Tactical data engineeringTactical data engineering
Tactical data engineering
 
MongoDB Project: Relational databases to Document-Oriented databases
MongoDB Project: Relational databases to Document-Oriented databasesMongoDB Project: Relational databases to Document-Oriented databases
MongoDB Project: Relational databases to Document-Oriented databases
 
Time card system
Time card systemTime card system
Time card system
 
Micro project project co 3i
Micro project project co 3iMicro project project co 3i
Micro project project co 3i
 
CP Handout#10
CP Handout#10CP Handout#10
CP Handout#10
 
Chap07
Chap07Chap07
Chap07
 
IDP_Project_2nd_Presentation_PPT Template.ppt
IDP_Project_2nd_Presentation_PPT Template.pptIDP_Project_2nd_Presentation_PPT Template.ppt
IDP_Project_2nd_Presentation_PPT Template.ppt
 
mongoDB Project: Relational databases & Document-Oriented databases
mongoDB Project: Relational databases & Document-Oriented databasesmongoDB Project: Relational databases & Document-Oriented databases
mongoDB Project: Relational databases & Document-Oriented databases
 
Programming Fundamentals
Programming FundamentalsProgramming Fundamentals
Programming Fundamentals
 
UNIANOVA class BY trouble METHOD=SSTYPE(3) INTERCEPT=INCLU.docx
UNIANOVA class BY trouble  METHOD=SSTYPE(3)  INTERCEPT=INCLU.docxUNIANOVA class BY trouble  METHOD=SSTYPE(3)  INTERCEPT=INCLU.docx
UNIANOVA class BY trouble METHOD=SSTYPE(3) INTERCEPT=INCLU.docx
 
Query optimization in SQL
Query optimization in SQLQuery optimization in SQL
Query optimization in SQL
 
intro-slides.pdf very important for computer science students
intro-slides.pdf very important for computer science studentsintro-slides.pdf very important for computer science students
intro-slides.pdf very important for computer science students
 
Project3
Project3Project3
Project3
 
Android best practices
Android best practicesAndroid best practices
Android best practices
 
Retour sur la Microsoft //Build 2018
Retour sur la Microsoft //Build 2018Retour sur la Microsoft //Build 2018
Retour sur la Microsoft //Build 2018
 
Running Head STUDENT RECORD KEEPING SYSTEM DATABASE PROJECT 1.docx
Running Head STUDENT RECORD KEEPING SYSTEM DATABASE PROJECT  1.docxRunning Head STUDENT RECORD KEEPING SYSTEM DATABASE PROJECT  1.docx
Running Head STUDENT RECORD KEEPING SYSTEM DATABASE PROJECT 1.docx
 
Lesson 10
Lesson 10Lesson 10
Lesson 10
 
Introducing ms sql_server_updated
Introducing ms sql_server_updatedIntroducing ms sql_server_updated
Introducing ms sql_server_updated
 
Ada lab manual
Ada lab manualAda lab manual
Ada lab manual
 

More from arkleatheray

Determine whether the following statements about the accumulated eang.pdf
Determine whether the following statements about the accumulated eang.pdfDetermine whether the following statements about the accumulated eang.pdf
Determine whether the following statements about the accumulated eang.pdf
arkleatheray
 
Data StructuresPlease I need help completing this c++ program..pdf
Data StructuresPlease I need help completing this c++ program..pdfData StructuresPlease I need help completing this c++ program..pdf
Data StructuresPlease I need help completing this c++ program..pdf
arkleatheray
 
Before 1980, most cell control and management software was written b.pdf
Before 1980, most cell control and management software was written b.pdfBefore 1980, most cell control and management software was written b.pdf
Before 1980, most cell control and management software was written b.pdf
arkleatheray
 
^^^Q3. I am trying to implement double linked list but I was faile.pdf
^^^Q3. I am trying to implement double linked list but I was faile.pdf^^^Q3. I am trying to implement double linked list but I was faile.pdf
^^^Q3. I am trying to implement double linked list but I was faile.pdf
arkleatheray
 
What is the evolutionary basis for sexual reproductionSolution.pdf
What is the evolutionary basis for sexual reproductionSolution.pdfWhat is the evolutionary basis for sexual reproductionSolution.pdf
What is the evolutionary basis for sexual reproductionSolution.pdf
arkleatheray
 
Why is it that the Grams stain is not appropriate for acid fast ba.pdf
Why is it that the Grams stain is not appropriate for acid fast ba.pdfWhy is it that the Grams stain is not appropriate for acid fast ba.pdf
Why is it that the Grams stain is not appropriate for acid fast ba.pdf
arkleatheray
 
Why does this version of the swap function fail to work Is there a f.pdf
Why does this version of the swap function fail to work Is there a f.pdfWhy does this version of the swap function fail to work Is there a f.pdf
Why does this version of the swap function fail to work Is there a f.pdf
arkleatheray
 
The groin is also known as the _____ region. crural inguinal perin.pdf
The groin is also known as the _____ region.  crural  inguinal  perin.pdfThe groin is also known as the _____ region.  crural  inguinal  perin.pdf
The groin is also known as the _____ region. crural inguinal perin.pdf
arkleatheray
 
Security Challenges Please respond to the followingDistributed .pdf
Security Challenges Please respond to the followingDistributed .pdfSecurity Challenges Please respond to the followingDistributed .pdf
Security Challenges Please respond to the followingDistributed .pdf
arkleatheray
 

More from arkleatheray (20)

briefly write about the Aridity of Subtropics Causes, locations, etc.pdf
briefly write about the Aridity of Subtropics Causes, locations, etc.pdfbriefly write about the Aridity of Subtropics Causes, locations, etc.pdf
briefly write about the Aridity of Subtropics Causes, locations, etc.pdf
 
Compare and contrast the Mann-Whitney (aka Wilcoxon Rank Sum) Test w.pdf
Compare and contrast the Mann-Whitney (aka Wilcoxon Rank Sum) Test w.pdfCompare and contrast the Mann-Whitney (aka Wilcoxon Rank Sum) Test w.pdf
Compare and contrast the Mann-Whitney (aka Wilcoxon Rank Sum) Test w.pdf
 
Determine whether the following statements about the accumulated eang.pdf
Determine whether the following statements about the accumulated eang.pdfDetermine whether the following statements about the accumulated eang.pdf
Determine whether the following statements about the accumulated eang.pdf
 
Discuss the changing demographics of Entrepreneurs and give an examp.pdf
Discuss the changing demographics of Entrepreneurs and give an examp.pdfDiscuss the changing demographics of Entrepreneurs and give an examp.pdf
Discuss the changing demographics of Entrepreneurs and give an examp.pdf
 
Data StructuresPlease I need help completing this c++ program..pdf
Data StructuresPlease I need help completing this c++ program..pdfData StructuresPlease I need help completing this c++ program..pdf
Data StructuresPlease I need help completing this c++ program..pdf
 
Before 1980, most cell control and management software was written b.pdf
Before 1980, most cell control and management software was written b.pdfBefore 1980, most cell control and management software was written b.pdf
Before 1980, most cell control and management software was written b.pdf
 
at age 51 can you take early distributions from traditional IRA for .pdf
at age 51 can you take early distributions from traditional IRA for .pdfat age 51 can you take early distributions from traditional IRA for .pdf
at age 51 can you take early distributions from traditional IRA for .pdf
 
What is a view What is it used for Give examples when a view can b.pdf
What is a view What is it used for Give examples when a view can b.pdfWhat is a view What is it used for Give examples when a view can b.pdf
What is a view What is it used for Give examples when a view can b.pdf
 
^^^Q3. I am trying to implement double linked list but I was faile.pdf
^^^Q3. I am trying to implement double linked list but I was faile.pdf^^^Q3. I am trying to implement double linked list but I was faile.pdf
^^^Q3. I am trying to implement double linked list but I was faile.pdf
 
What is the evolutionary basis for sexual reproductionSolution.pdf
What is the evolutionary basis for sexual reproductionSolution.pdfWhat is the evolutionary basis for sexual reproductionSolution.pdf
What is the evolutionary basis for sexual reproductionSolution.pdf
 
Why is it that the Grams stain is not appropriate for acid fast ba.pdf
Why is it that the Grams stain is not appropriate for acid fast ba.pdfWhy is it that the Grams stain is not appropriate for acid fast ba.pdf
Why is it that the Grams stain is not appropriate for acid fast ba.pdf
 
Why does this version of the swap function fail to work Is there a f.pdf
Why does this version of the swap function fail to work Is there a f.pdfWhy does this version of the swap function fail to work Is there a f.pdf
Why does this version of the swap function fail to work Is there a f.pdf
 
Which of the following is NOT a reason why heat is a bad method to ov.pdf
Which of the following is NOT a reason why heat is a bad method to ov.pdfWhich of the following is NOT a reason why heat is a bad method to ov.pdf
Which of the following is NOT a reason why heat is a bad method to ov.pdf
 
What are the trends in browsersSolution1.chrome Google chrom.pdf
What are the trends in browsersSolution1.chrome Google chrom.pdfWhat are the trends in browsersSolution1.chrome Google chrom.pdf
What are the trends in browsersSolution1.chrome Google chrom.pdf
 
The probability of a persons being left-handed is .12. In the 1992.pdf
The probability of a persons being left-handed is .12. In the 1992.pdfThe probability of a persons being left-handed is .12. In the 1992.pdf
The probability of a persons being left-handed is .12. In the 1992.pdf
 
The mass of a radioactive substance follows a continuous exponential.pdf
The mass of a radioactive substance follows a continuous exponential.pdfThe mass of a radioactive substance follows a continuous exponential.pdf
The mass of a radioactive substance follows a continuous exponential.pdf
 
The groin is also known as the _____ region. crural inguinal perin.pdf
The groin is also known as the _____ region.  crural  inguinal  perin.pdfThe groin is also known as the _____ region.  crural  inguinal  perin.pdf
The groin is also known as the _____ region. crural inguinal perin.pdf
 
short answer List and describe two advances during the Industrial Re.pdf
short answer List and describe two advances during the Industrial Re.pdfshort answer List and describe two advances during the Industrial Re.pdf
short answer List and describe two advances during the Industrial Re.pdf
 
SheilaSalmonella agar is _ because _ breaks down amino acids that co.pdf
SheilaSalmonella agar is _ because _ breaks down amino acids that co.pdfSheilaSalmonella agar is _ because _ breaks down amino acids that co.pdf
SheilaSalmonella agar is _ because _ breaks down amino acids that co.pdf
 
Security Challenges Please respond to the followingDistributed .pdf
Security Challenges Please respond to the followingDistributed .pdfSecurity Challenges Please respond to the followingDistributed .pdf
Security Challenges Please respond to the followingDistributed .pdf
 

Recently uploaded

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Recently uploaded (20)

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 

Create Student Project Database with insert, select, update, and del.pdf

  • 1. Create Student Project Database with insert, select, update, and delete. Part I - Create Student Table (Student) 10 Students STUDENT NO TEXT (3) PRIMARYKEY STUDENT_NAME TEXT (10) STUDENT_DOB DATE STUDENT_DOJ DATE - Create Project Table (Project) 3 projects, Name, C++/Java/VB PRJ_NO TEXT (3) PRIMARY KEY PRJ_NAME TEXT (15) PRJ_PLATFORM TEXT (10) - Create Student Project Table (StudentProject) Student#, Project#, Role(programmer, manager, or analyst) STUDENT_NO TEXT (3) PRJ_NO TEXT (3) DESIGNATION TEXT (10) PRIMARYKEY (STUDENT_NO,PRJ_NO,DESIGNATION) FOREIGN KEY(STUDENT_NO) FOREIGN KEY(PRJ_NO) Solution CREATE TABLE Student ( STUDENT_NO CHAR(3) NOT NULL PRIMARY KEY, STUDENT_NAME CHAR(10), STUDENT_DOB DATE, STUDENT_DOJ DATE ) CREATE TABLE Project ( PRJ_NO CHAR(3) NOT NULL PRIMARY KEY, PRJ_NAME CHAR(15), PRJ_PLATFORM CHAR(10) )
  • 2. CREATE TABLE StudentProject ( STUDENT_NO CHAR(3) REFERENCES Student, PRJ_NO CHAR(3) REFERENCES Project, DESIGNATION CHAR(10), PRIMARY KEY(STUDENT_NO,PRJ_NO,DESIGNATION) ) INSERT INTO Student VALUES ('AB0',"Paul",'1992-05-12','2016-02-12'); INSERT INTO Student VALUES ('AB1',"Sam",'1992-06-11','2016-03-11'); INSERT INTO Student VALUES ('AB2',"Raul",'1992-03-11','2016-04-05'); INSERT INTO Student VALUES ('AB3',"John",'1992-07-09','2016-05-12'); INSERT INTO Student VALUES ('AB4',"Mike",'1992-02-06','2016-06-02'); INSERT INTO Student VALUES ('AB5',"Ram",'1992-01-03','2016-07-06'); INSERT INTO Student VALUES ('AB6',"Jin",'1992-05-12','2016-08-03'); INSERT INTO Student VALUES ('AB7',"Frodo",'1992-08-02','2016-09-12'); INSERT INTO Student VALUES ('AB8',"Bill",'1992-09-01','2016-11-04'); INSERT INTO Student VALUES ('AB9',"Tom",'1992-06-12','2016-12-12'); SELECT * FROM Student; UPDATE Student SET STUDENT_DOB='1992-03-04',STUDENT_DOJ='1991-03-04' WHERE STUDENT_NO='AB5'; INSERT INTO Project VALUES ('XY0',"C++","Coding"); INSERT INTO Project VALUES ('XY1',"JAVA","Theory"); INSERT INTO Project VALUES ('XY2',"VB","Design"); DELETE FROM Project WHERE PRJ_PLATFORM="Design"; //It Deletes row number 3 from Project table SELECT * FROM Project; INSERT INTO StudentProject VALUES ('AB0',XY0,"Programmer"); INSERT INTO StudentProject VALUES ('AB1',XY1,"Manager"); INSERT INTO StudentProject VALUES ('AB2',XY2,"Analyst"); INSERT INTO StudentProject VALUES ('AB3',XY0,"Programmer"); INSERT INTO StudentProject VALUES ('AB4',XY1,"Manager"); INSERT INTO StudentProject VALUES ('AB5',XY2,"Analyst"); INSERT INTO StudentProject VALUES ('AB6',XY0,"Programmer");
  • 3. INSERT INTO StudentProject VALUES ('AB7',XY1,"Manager"); INSERT INTO StudentProject VALUES ('AB8',XY2,"Analyst"); INSERT INTO StudentProject VALUES ('AB9',XY0,"Programmer"); SELECT * FROM StudentProject;