Get names of students, who received final grade ‘F’ in Winter 2003.

Use the Indo–US (IU) College database tables to design the following queries. (Use the spooling method to capture all queries and results in the CHAP7SP2.LST file)


```
SQL> SELECT LAST, FIRST, COURSEID, SECTION, FINAL
2 FROM STUDENT S, CRSSECTION C, REGISTRATION R
3 WHERE S.STUDENTID = R.STUDENTID
4 AND R.CSID = C.CSID
5 AND R.FINAL = 'F';

LAST FIRST COURSE SE F
--------------- --------------- ------ -- -
DIAZ JOSE MA150 02 F
```

Computer Science & Information Technology

You might also like to view...

Java uses Unicode to represent characters.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Read the third integer from the user and store it in the int variable z.

Write declarations, statements or comments that accomplish each of the tasks.

Computer Science & Information Technology

Color ____ changes the intensity of colors.

A. tone B. density C. saturation D. brightness

Computer Science & Information Technology

When does an event-driven macro run?

What will be an ideal response?

Computer Science & Information Technology