Definition of the table example
EXEC SQL CREATE TABLE example
(firstkey FIXED
(3) KEY,
secondkey FIXED
(4) KEY,
normalcolumn FIXED (5),
invcolumn1 CHAR
(15),
invcolumn2 CHAR
(9),
multinvcolumn1 CHAR (22),
multinvcolumn2 CHAR (5,
multinvcolumn3 CHAR (8,
PRIMARY KEY (firstkey, secondkey));
Two single-column indexes (invcolumn1 and invcolumn2), and one multi-column index ind are defined for the example table.