| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
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-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |