ROW
ROW is a data type used in stored programs to store a complete row of data from a cursor or table.
Syntax
ROW (<field name> <data type> [{, <field name> <data type>}... ])Description
Features
ROW fields as normal variables
a.x:= 10;
a.x:= b.x;
SET a.x= 10, a.y=20, a.z= b.z;SELECT f1(rec.a), rec.a<10;ROW type variables as FETCH targets
ROW type variables as SELECT...INTO targets
SELECT...INTO targetsFeatures not implemented
Examples
Declaring a ROW in a stored procedure
FETCH Examples
SELECT...INTO Examples
See Also
Last updated
Was this helpful?

