Write the following query in the Object Query Language (OQL) of the ODMG object model:

List the names of all pets that received the T123 treatment.


```
SELECT petName:p.petName
FROM t IN Treatment,
pt IN t.UsedIn,
e IN pt.ResultsFrom,
p IN e.Underwent
WHERE t.treatNo = ‘T123’
```

Computer Science & Information Technology

You might also like to view...

Pressing the _____ key as you type a list automatically displays the next list number, letter, or bullet.

A. Enter B. Tab C. Shift D. Ctrl + Tab

Computer Science & Information Technology

Like any Excel chart, ____________________ respond to changes you make to the underlying data.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

=MATCH(value,array,0) =VLOOKUP(value, table, column index, 0) The 0 (zero) in these two functions above work EXACTLY the same.

a. true b. false

Computer Science & Information Technology

________ backups only back up data that has changed since the most recent full backup.

A. Incremental B. Full C. Differential D. Delta

Computer Science & Information Technology