Next Prev Up Top Contents Index

15.1 Introduction

This chapter describes Common SQL -- the LispWorks interface to SQL. It should be used in conjunction with the relevant chapter of the LispWorks Reference Manual , which contains full reference entries for all the symbols in the SQL package. This chapter is applicable to UNIX LispWorks and the Enterprise Edition of LispWorks. This chapter covers the following areas:

The LispWorks SQL interface uses the following database terminology:

Data Definition Language (DDL)

The language used to specify and interrogate the structure of the database schema.

Data Manipulation Language (DML)

The language used for retrieving and modifying data. Also known as query language .

table

A set of records. Also known as relation .

attribute

A field of information in the table. Also known as column .

record

A complete set of attribute values in the table. Also known as tuple , or row .

view

A display of a table configured to your own needs. Also known as virtual table .

15.1.1 Overview


LispWorks User Guide - 14 Dec 2001

Next Prev Up Top Contents Index