Show the total enrollment for course 122 in a column named TOTAL ENROLLED. (1 row)

What will be an ideal response?

```SELECT COUNT(*) "TOTAL ENROLLED"
FROM section s, enrollment e
WHERE e.section_id = s.section_id
AND s.course_no = 122
```

Computer Science & Information Technology

You might also like to view...

What is wrong with the following statement? cout << “Hello to everyone\n”

a. cout should be count b. missing a semicolon c. missing a “ d. missing a (

Computer Science & Information Technology

What is the value of x after the following code executes?

int x=10; if(x++ >10) { x =13; } a. 10 b. 9 c. 13 d. 11

Computer Science & Information Technology