Qualified built-in data types

A qualified data type is a built-in data type that has an added qualification that specifies information about the storage size, range of values, or precision of the type.

You must define a qualified data type by specifying its qualifications.

For example, the DECIMAL(p,s) data type can take qualifiers for precision (the total number of digits) and scale (the total number of digits following the decimal point). So, the DECIMAL(6,3) data type has six digits, with three digits to the right of the decimal point; for example, 123.456.

For a complete list of qualified data types and their parameters, see the Informix® Guide to SQL: Reference.