HadiRezaee
Technical User
Hi there,
I have a table with below structure:
ID ---> Number(long) INDEX FIELD(Unique = false)
PID1 ---> Number(long)
PID2 ---> Number(long)
OPERATE ---> Yes/No(boolean)
TOTAL ---> Number(double)
It is a example of:
1, 1, 2, YES, 2000 (Help: ID = 1, PID1 = 1, PID2 = 2, OPERATE = YES, TOTAL = 2000)
1, 2, 1, NO, 2000 (Help: ID = 1, PID1 = 2, PID2 = 1, OPERATE = NO, TOTAL = 2000)
2, 3, 4, NO, 5500 (Help: ID = 2, PID1 = 3, PID2 = 4, OPERATE = NO, TOTAL = 5500)
2, 4, 3, YES, 5500 (Help: ID = 2, PID1 = 4, PID2 = 3, OPERATE = YES, TOTAL = 5500)
That was just a small example of the stored data in database about this table !
Now, i wanna show report like this:
1, 1, 2, YES, 2000
2, 3, 4, NO, 5500
Do you got it ?
I wanna delete the records in my report that has frequency value in ID field !
Please help me !
I have a table with below structure:
ID ---> Number(long) INDEX FIELD(Unique = false)
PID1 ---> Number(long)
PID2 ---> Number(long)
OPERATE ---> Yes/No(boolean)
TOTAL ---> Number(double)
It is a example of:
1, 1, 2, YES, 2000 (Help: ID = 1, PID1 = 1, PID2 = 2, OPERATE = YES, TOTAL = 2000)
1, 2, 1, NO, 2000 (Help: ID = 1, PID1 = 2, PID2 = 1, OPERATE = NO, TOTAL = 2000)
2, 3, 4, NO, 5500 (Help: ID = 2, PID1 = 3, PID2 = 4, OPERATE = NO, TOTAL = 5500)
2, 4, 3, YES, 5500 (Help: ID = 2, PID1 = 4, PID2 = 3, OPERATE = YES, TOTAL = 5500)
That was just a small example of the stored data in database about this table !
Now, i wanna show report like this:
1, 1, 2, YES, 2000
2, 3, 4, NO, 5500
Do you got it ?
I wanna delete the records in my report that has frequency value in ID field !
Please help me !