The purpose of a worksheet is to provide a support structure for your study and to provide better coverage of routine introductory exercises prior to completing more challenging homework assignments.
Much of the text comes from questions that arise during the course. The worksheets should make the class easier. Please attempt the worksheet on your own. Answers are provided.
To receive credit for completing the worksheet, you must submit 'Done' in a textbox on D2L submission folder when you have finished the worksheet.
If you have questions as you go through this worksheet, please feel free to email the instructor.
Create table CSStudent as below:
Create table CSStudent (studentID number(6),
SSN number(10),
Program varchar(10),
Started number(4),
primary key (studentID)
)
Do not copy/paste the create table statement. Type it in your SQL window.
Insert the following data in CSStudent:
insert into csstudent values ( 90421, 987654321, 'COMP-GAM', 2010 );
insert into csstudent values ( null, 14662, 'COMP-SCI', 2013 );
insert into csstudent values (123123123, 08871, 'INFO-SYS', 2009 );
Q. What is the error and why are you getting it?
Modify University.sql as follows:
The altered University.sql is available here.