Go to the first, previous, next, last section, table of contents.


catalog_alpha_<name>

Count information for each letter (alpha only).

create table catalog_alpha_NAME (
  #
  # Table management information 
  #
  rowid int autoincrement,
  created datetime not null,
  modified timestamp not null,

  #
  # The letter
  #
  letter char(1) not null,
  #
  # Count of records of the cataloged table have
  # a field starting with this letter.
  #
  count int default 0,
)


Go to the first, previous, next, last section, table of contents.