Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
How can i find the number of rows of a particular filed from the edit script.
Thanks in advance
Regards
......
Hi
I am getting like this.
Test:
LOAD F1
FROM
E:\Test1.qvd
(qvd);
Test1:
Load Count(F1) as Count
Resident Test;
Drop Table Test;
(or)
Test:
LOAD F1
FROM
E:\Test1.qvd
(qvd);
Let vCount = NoOfRows('Test1');
Regards
.......
What do you mean? Do you want to know the number or rows of a table?
Hi,
Use
NumofRows('TableName')
Celambarasan
Hi ,
Please look into it.
Test:
LOAD F1,
F2,
F3
FROM
E:\Test1.qvd
(qvd);
Now i need to find the distinct number of rows of data for any F1 or F2 or F3.
I tried like this
NoOfRows('F1') and NoOfRows('Test') but ididn't get.
Regards
......
Hi
I am getting like this.
Test:
LOAD F1
FROM
E:\Test1.qvd
(qvd);
Test1:
Load Count(F1) as Count
Resident Test;
Drop Table Test;
(or)
Test:
LOAD F1
FROM
E:\Test1.qvd
(qvd);
Let vCount = NoOfRows('Test1');
Regards
.......
Hi,
You can try with fieldvaluecount function
let vCount = fieldvaluecount('F1');
Celambarasan