Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

row number

How to add the unique row number to each row ??????

1 Solution

Accepted Solutions
Jason_Michaelides
Luminary Alumni
Luminary Alumni

In your load script use:

LOAD

     RowNo()     AS     RowNumber

     ,Field1

     ,Field2

     ,etc

FROM...;

Jason

View solution in original post

4 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     use rowno()

Celambarasan

Not applicable
Author

I used it but the output is coming 1 for each row ???????????

Jason_Michaelides
Luminary Alumni
Luminary Alumni

In your load script use:

LOAD

     RowNo()     AS     RowNumber

     ,Field1

     ,Field2

     ,etc

FROM...;

Jason

CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Where you have used?

Celambarasan