Definition: The describe SQL command is used to list all of the fields in a table and the data format of each field. It is phrased as: describe [TableName];
Examples: This would list all of the fields and their formats for the table called 'Colors':
describe Colors;

