FunctionPackage: dbi.mysqlToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 10.1
Unrevised from 10.0 to 10.1.
10.0 version

table-list

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

  1. a string naming a single table
  2. a list (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-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page was not revised from the 10.0 page.
Created 2019.8.20.

ToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 10.1
Unrevised from 10.0 to 10.1.
10.0 version