P.o()

Descripiton:

Convert a pure table sequence to an ordinary sequence.

Syntax:

P.o()

Note:

The function converts pure table sequence P to an ordinary sequence.

Parameter:

P

A pure table sequence

Return value:

Table sequence

Example:

 

A

 

1

=demo.query("select EID,NAME,GENDER,DEPT,BIRTHDAY from employee")

Return a table sequence where all fields are pure ones.

2

=A1.i()

Convert A1’s table sequence to a pure one.

3

=A2.o()

Convert A2’s pure table sequence to an ordinary table sequence.