14.06.2013 Views

Databases and Systems

Databases and Systems

Databases and Systems

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

206<br />

These queries are no more than simple projection-selection queries <strong>and</strong>, but for<br />

the fact that the source data is not in first-normal-form, could be expressed in a<br />

relational query language. However, CPL can perform more complex restructurings<br />

such as nesting <strong>and</strong> unnesting, as shown in the following examples.<br />

setof rcd { title : t, keyword : k}<br />

where rcd {title : \t, keywd : \kk, ...} DB, \k kk<br />

setof rcd{ keyword : k, titles : setof x.title where \x DB, k x.keywd}<br />

where \y DB, \k y. keywd<br />

The first query “flattens” the nested relation; the second restructures it so that the<br />

database becomes a database of keywords with associated titles. Operations such as<br />

these can be expressed in nested relational algebra <strong>and</strong> in certain object-oriented<br />

query languages. The strength of CPL is that it has more general collection types,<br />

allows function definition <strong>and</strong> can also exploit variants, which may be used in pattern<br />

matching:<br />

setof rcd{ name : n, title : t}<br />

where rcd{title : \t, journal : vrt{uncontrolled : \n}, ,..) DB<br />

This gives us the names of “uncontrolled’ journals together with their titles. The<br />

pattern “vrt{ uncontrolled : \n}” matches only uncontrolled journals <strong>and</strong>, when it does,<br />

binds the variable n to the name.<br />

The syntax of functions is given by \x =e, where e is an expression that may<br />

contain the variable x. We can give this function (or any other CPL expression) a<br />

name with the syntax define f (\x)=e, which causes f to act as synonym for the<br />

expression e. Thus, the titles of papers of a given author can be expressed as the<br />

function,<br />

define papers_of ( \x) = setof p where p DB, x p.authors<br />

Note that \x p.authors matches elements of a list rather than elements of a set.<br />

These examples illustrate part of the expressive power of CPL. A more detailed<br />

description of the language is given in (3), where a description of how to express<br />

aggregate functions such as summation, as well as functions such as transitive<br />

closure, is also given. CPL can also be used to query object-oriented databases by<br />

including a reference type, a reference pattern, <strong>and</strong> a dereferencing operation (4).

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!