Question: SQL CODE (did the rest need help with these portions): REM insert data into the COURSE table (first record given) INSERT INTO COURSE VALUES('ACCT-211', 'Accounting

 SQL CODE (did the rest need help with these portions): REM

SQL CODE (did the rest need help with these portions):

REM insert data into the COURSE table (first record given) INSERT INTO COURSE VALUES('ACCT-211', 'Accounting I', 3); INSERT INTO COURSE VALUES('ACCT-212', 'Accounting II', 3); INSERT INTO COURSE VALUES('CIS-220', 'Intro to Microcomputing', 3); INSERT INTO COURSE VALUES('CIS-420', 'Database Design and Implementation', 4);

INSERT INTO COURSE VALUES('ACCT-211','Accounting I',3);

REM insert data into the CLASS table (first record given)

INSERT INTO CLASS VALUES(10012,'ACCT-211',1,'MWF 8:00-8:50 a.m.','BUS311');

REM insert data into the STUDENT table (first record given)

INSERT INTO STUDENT VALUES(321452,'Bowser','William','C', '12-Feb-75', 42,'So',2.84,2134);

REM insert data into the ENROLL table (first record given)

INSERT INTO ENROLL VALUES(10014,321452,'C');

COMMIT;

REM EXTRACT/MODIFY DATA FROM TABLES (#3 [1-15])

Table COURSE \begin{tabular}{|l|l|l|} \hline CRS_CODE & \multicolumn{1}{|c|}{ CRS_DESCRIPTION } & CRS_CREDIT \\ \hline ACCT-211 & Accourting I & 3 \\ \hline ACCT-212 & Accounting II & 3 \\ \hline CIS-220 & Intro. to MCrocomputing & 3 \\ \hline CIS-420 & Datatase Design and Inplementation & 4 \\ \hline \end{tabular} Table CLASS Table STUDENT Table ENROLL

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!