Description:
Get the names of fields of the table sequence according to sequence numbers of these fields.
Syntax:
T. fname(i)
Note:
The function gets the name of the field whose sequence number is i from table sequence T. Return all field names in T If no parameter is present.
Parameter:
T |
Table sequence |
i |
Sequence number of a field |
Return value:
String/Sequence
Example:
|
A |
|
1 |
=demo.query("select EID,NAME,DEPT,SALARY from EMPLOYEE") |
|
2 |
=A1.fname(2) |
Return “NAME”. |
3 |
=A1.fname() |
Return a sequence comprising all field names in A1.
|
Related function: