# Table Creation

## Input Concepts

| Concept        | Type   | Description                                                                       | Default | Required |
| -------------- | ------ | --------------------------------------------------------------------------------- | ------- | -------- |
| `column names` | list   | The column names for the table. If not specified, an empty table will be created. | Empty   | No       |
| `row count`    | number | Number of empty rows to create in the table.                                      | 0       | No       |

## Output Concepts

| Concept | Description                                                                                      |
| ------- | ------------------------------------------------------------------------------------------------ |
| `table` | The created table with specified column names or an empty table if no column names are provided. |

## Examples

### 1. Basic Table Creation

{% tabs %}
{% tab title="Automation" %}

```
create a table
```

{% endtab %}

{% tab title="Results" %}
Table (empty)
{% endtab %}
{% endtabs %}

### 2. Specifying Column Names and Row Count

{% tabs %}
{% tab title="Automation" %}

```
create a table where
    the column names are "USA", "Japan", "Egypt"
    the row count is 3
```

{% endtab %}

{% tab title="Results" %}

| USA           | Japan | Egypt |
| ------------- | ----- | ----- |
|               |       |       |
|               |       |       |
|               |       |       |
| {% endtab %}  |       |       |
| {% endtabs %} |       |       |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kognitos.com/legacy/legacy-experience/automation-areas/tables-v2/create-a-table.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
