Files
Digital-Research-Source-Code/CPM OPERATING SYSTEMS/CPM 68K/cpm68k_pgms/sdbas/SDB.HLP
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

1 line
1.4 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

create <rname> ( <adefs> ) <size> - create a new relation
insert <rname> - insert tuples into a relation
delete <rse> ; - delete tuples from relations
update <anames> from <rse> ; - update tuples within a relation
print [<u>] <anames> from <rse> [<i>] ; - print tuples
sort <rname> by <snames> ; - sort a relation file
import <fname> into <rname> - import tuples from a file
export <rname> [<i>] ; - export tuples to a file
extract <rname> [<i>] ; - extract definition to a file
compress <rname> - compress a relation file
define <mname> - define a macro
exit - exit SDB
<u> ::= using <fname>
<i> ::= into <fname>
<adefs> ::= <a list of attribute definitions>
<rse> ::= <rnames> [where <boolean-expression>]
<rname> ::= <a relation name>
<rnames> ::= <a comma separated list of <rname>s>
<aname> ::= [<rname> .] <an attribute name>
<anames> ::= * | <a comma separated list of <aname>s>
<sname> ::= <aname> { ascending | descending }
<snames> ::= <a comma separated list of <sname>s>