# Create an Integer Table

## Overview

This procedure generates a sample integer table. The generated table will have the columns `Amt`, `Min`, and `Max` and two predefined rows of data:

| Amt | Min | Max |
| --- | --- | --- |
| 100 | 10  | 300 |
| 200 | 5   | 500 |

This procedure will consistently generate the same table. It can be easily expanded, modified, or used as a foundation for further data processing.

## Output Concepts

| Concept | Description                                                                          |
| ------- | ------------------------------------------------------------------------------------ |
| `table` | A table with columns `Amt`, `Min`, and `Max`, and two rows of sample integer values. |

## Examples

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

```
create an integer table
```

{% endtab %}

{% tab title="Results" %}

| Amt           | Min | Max |
| ------------- | --- | --- |
| 100           | 10  | 300 |
| 200           | 5   | 500 |
| {% endtab %}  |     |     |
| {% endtabs %} |     |     |
