Function
sql
create-index name &key on unique attributes database =>
The name of the index.
The name of a table.
A boolean.
A list of attributes.
A database.
create-index function creates an index called name on the table specified by on. The attributes of the table to index are given by attributes. Setting unique tot includesUNIQUE in the SQL index command, specifying that the columns indexed must contain unique values. nil. The default value of database is*default-database*. (create-index [manager] :on [emp] :unique t :attributes '([ename] [sal]))
drop-indexcreate-table