Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Seven Databases In Seven Weeks A Guide To Modern Databases And The NoSQL Movement

Authors: Luc Perkins, Eric Redmond, Jim Wilson

2nd Edition

1680502530, 978-1680502534

More Books

Students also viewed these Databases questions

Question

What information remains to be obtained?

Answered: 1 week ago

Question

=+ Are they breakable for any reason?

Answered: 1 week ago

Question

=+When and under what circumstances are contracts renegotiated?

Answered: 1 week ago