# Syntax
The results of the last query can be memorized on a named clipboard using the syntax:
```
local memorize results clipboard NAME
```
The clipboard contents can be processed further using [[Save Clipboard]], [[Load Clipboard]] or [[Load Clipboard to Table]].
# Examples
The following example places the row from `dual` on the clipboard `clipping`:
```
select *
from dual@DataDictionary
local memorize results clipboard clipping
```