IDGenerator
Compatibility: text
data
The IDGenerator
is used to create an indexed ID column that you may be using as a primary key. When transforming the data, it removes the column. When reversing the the transform, it creates an indexed ID column starting at a specified counter, with any additional prefixes or suffixes you provide.
Parameters
prefix
: A string with the prefix to use for the counter. All generated IDs will have the prefix.
(default) | Do not add a prefix |
| Add the prefix to every ID |
starting_value
: The starting value for the counter
(default) | Start the counter at 0. |
| Use the integer as the starting value. This must be >=0. |
suffix
: A string with the suffix to use for the counter. All generated IDs will have the suffix.
(default) | Do not add a suffix |
| Add the suffix to every ID |
FAQs
Last updated