| | # Overview |
| | |
| | +``` |
| | root > people, # "root" is a keyword |
| | person > person, # maps a node to table context |
 |
| | address > address, |
| | .*; # * globs all columns. ; is WHERE |
| | +``` |
| | |
| | # Namespaces |
| | |
| | +``` |
| | root > people(html, http://www.w3.org/TR/html4/), |
| | person > html:person, |
| | |
| | person.id > people:id( people, http://www.people.com ), |
| | +``` |
| | |
| | # Where clause |
| | |
| | +``` |
| | account.id = $id # $ starts a named parameter |
| | account.id <> $id # inequality parameter comparison |
 |
| | account.id <= 42 # numeric less than or equal to comparison |
| | account.id >= 42 # numeric greater than or equal to comparison |
| | +``` |
| | |
| | |