Go to the first, previous, next, last section, table of contents.
In the example used in this chapter, the urldemo table contains the data used in all the catalogs. Since your own application is likely to require a different kind of data you will have to create your own table.
A few requirements must be met when creating a table that will be used by catalogs (thematic, alphabetical or chronological).
create table urldemo ( ... rowid int autoincrement, ... unique urldemo1 (rowid) );
If you're not sure how to create a new table, please refer to the MySQL documentation. If you want to do it quick and dirty you can guess from the table creation listed in the Catalog tables chapter.
At present we will use the urldemo table, you don't have to worry about creating a new table.
Go to the first, previous, next, last section, table of contents.