Shuffle Rule
Goal
Write shuffle
rule logic to reorder existing column values.
- The shuffle reorders the column values in a random order and ensures that no record retains the original column value.
Ano Structure and Example
- Structure
- Update Example
...
shuffle <column> <rule-name?>
...
table HOTEL
column text NAME size 40
...
task ... {
update HOTEL
shuffle NAME
}