| Allegro CL version 6.2 New since 6.2 release. | |||||||||
Arguments: &rest tables
This function creates a string that contains a list of table names separated by commas. Each argument to table-list can be
(tablename :as alias) where
tablename and alias are strings.
The result of table-list is often used as the value of the table argument to with-db-rows.
cl-user(16): (table-list "foo" "bar")
"foo, bar"
cl-user(17): (table-list "foo" '("bar" :as "b"))
"foo, bar as b"
cl-user(18):
See mysql.htm for information on the Allegro MySQL facility.
Copyright (c) 1998-2002, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 6.2. This page is new in the 6.2 release.
Created 2002.2.26.
| Allegro CL version 6.2 New since 6.2 release. | |||||||||