> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# format_template_* format settings

> ClickHouse format settings in the format_template_* generated group.

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>Type</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>Default</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          Changeable without restart
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

These settings are autogenerated from [source](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/FormatFactorySettings.h).

<h2 id="format_template_resultset">
  format\_template\_resultset
</h2>

Path to file which contains format string for result set (for Template format)

<h2 id="format_template_resultset_format">
  format\_template\_resultset\_format
</h2>

<VersionHistory rows={[{"id": "row-1","items": [{"label": "24.2"},{"label": ""},{"label": "Template result set format string can be set in query"}]}]} />

Format string for result set (for Template format)

<h2 id="format_template_row">
  format\_template\_row
</h2>

Path to file which contains format string for rows (for Template format)

<h2 id="format_template_row_format">
  format\_template\_row\_format
</h2>

<VersionHistory rows={[{"id": "row-1","items": [{"label": "24.2"},{"label": ""},{"label": "Template row format string can be set directly in query"}]}]} />

Format string for rows (for Template format)

<h2 id="format_template_rows_between_delimiter">
  format\_template\_rows\_between\_delimiter
</h2>

<SettingsInfoBlock
  type="String"
  default_value="
"
/>

Delimiter between rows (for Template format)
