Write an SQL statement that creates the Transcript table.

What will be an ideal response?


```
CREATE TABLE Transcript (
StudId INTEGER,
CrsCode CHAR(6),
Semester CHAR(6),
Grade CHAR(1),
PRIMARY KEY (StudId, CrsCode, Semester) )
```

Computer Science & Information Technology

You might also like to view...

Two primary queue operations are

a. push and pop b. enqueue and dequeue c. insert and delete d. onqueue and offqueue e. None of these

Computer Science & Information Technology

Before performing a mail merge, you add labels, or fields, to the main document to indicate where the custom information from the data source should appear.

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

Computer Science & Information Technology

When there is a change in a cell value in a function argument, the function display value is automatically updated to reflect that change

Indicate whether the statement is true or false.

Computer Science & Information Technology

Which of the following is the topmost node in a tree and does not have a parent?

A. root B. child C. leaf D. interior node

Computer Science & Information Technology