<CFTABLE QUERY="query_name" MAXROWS="maxrows_table" COLSPACING="number_of_spaces" HEADERLINES="number_of_lines" HTMLTABLE BORDER="yes_no" STARTROW="row_number"> </CFTABLE>
Builds a table in your ColdFusion page. Use the CFCOL tag to define column and row characteristics for a table. CFTABLE renders data either as preformatted text, or, with the HTMLTABLE attribute, as an HTML table. Use CFTABLE to create tables if you don't want to write your own HTML TABLE tag code, or if your data can be well presented as preformatted text.
Required. The name of the CFQUERY from which you want to draw data.
Optional. Specifies the maximum number of rows you want to display in the table.
Optional. Indicates the number of spaces to insert between columns (default is 2).
Optional. Indicates the number of lines to use for the table header (the default is 2, which leaves one line between the headers and the first row of the table).
Optional. Renders the table as an HTML 3.0 table.
Optional. Adds a border to the table. Use only when you specify the HTMLTABLE attribute for the table.
Optional. Specifies the query row from which to start processing.