Data on a named clipboard can be inserted into a table using the syntax: ``` local insert results clipboard <NAME> in table <TABLE-NAME> [create] ``` The table will be created first when it did not previously exist when `create` is added. # Example Upload the data into the `mydata` in-memory table, creating the table when it did not previously exist: ``` local insert results clipboard DATA in table mydata@inmemorystorage create ```