FORMULA LANGUAGE


Examples: @DbColumn (ODBC data source)
1. This formula retrieves from the inventory database the complete list of colors in which your company's uniforms are available. The data is stored like this:
ItemSizeColor
ShirtSmallRed
SkirtSmallGreen
SweaterMediumRed
TrousersMediumYellow

2. This example uses the sample "pubs" database that is included with Microsoft SQL Server. The formula uses the ODBC SQL Server driver to access the database, locate the table called "authors" that is owned by user "dbo," and then retrieve the list of names in the "au_lname" column. The author names are sorted in ascending order; null values are discarded.
See Also