The record data type

Composite data type. A collection of one or more scalar values (called fields) in fixed number and sequence.

There is no literal syntax specific to record-type values. You can instantiate record-type values with a single-row, multi-column table expression with the literal syntax pattern below.

...
<declarations>
  <let id="sampleLet"
    shape="record"
    value='{SELECT 23 foo, 46 bar}'/>
</declarations>
...

Figure 271. This let element has a record-type value