Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to retrieve row 1 from a table in a script-----> table[3], and assign columns to variables
May be this?
First 1 Load * from Table3;
This one
LOAD *
From Table
Where RowNo() <1;
This will load first row only.
RowNo() < 1 won't load anything... did you miss an equal Anand?
RowNo() <= 1 or RowNo() = 1?