Create a list of courses, sections and their capacity. Produce the result in the following format: (78 rows)

Course and Section CAPACITY
-------------------- ---------- ----------------------------------------
350 Section 3 ---------- 25
10 Section 2 ---------- 15
20 Section 2 ---------- 15




```
SELECT LPAD(course_no||' Section '||section_no, 20)
"Course and Section",
RPAD('-',10,'-') " ",LTRIM(capacity) Capacity
FROM section
```

Computer Science & Information Technology

You might also like to view...

Identify all the important concepts represented in the library database case study described here. In particular, identify the abstraction of classification (entity types and relationship types), aggregation, identification, and specialization/generalization. Specify (min, max) cardinality constraints whenever possible. List details that will affect the eventual design but which have no bearing on the conceptual design. List the semantic separately. Draw an EER diagram of the library database.

What will be an ideal response?

Computer Science & Information Technology

To add a row labeled "Total" to a query design click the ____ button in the Show/Hide group on the DESIGN tab on the Ribbon.

A. SUM B. New Row C. Totals D. Add All

Computer Science & Information Technology

In A1 to A5 input the same formula: ="" In A6 is the function: =COUNTBLANK(A1:A5) What is the result of A6

A. 2 B. 5 C. 1 D. An error E. 0

Computer Science & Information Technology

Express the ratio in simplest form.6 in. : 6 ft

What will be an ideal response?

Computer Science & Information Technology