S
sara
I have a table like this
ID f1 f2 f3 f4 ....
1 2 5 3 1
2 2 1 1 3
3 5 4 2 1
....
n 1 1 2 1
ID is a counter, the other fields have values going from 1 to 5, what should
I do to get a query that counts all the results for each "f", something like:
f1 f2 f3 f4 ....
1 1 2 1 3
2 2 0 2 0
3 0 0 1 1
4 0 1 0 0
5 1 1 0 0
Thank you
ID f1 f2 f3 f4 ....
1 2 5 3 1
2 2 1 1 3
3 5 4 2 1
....
n 1 1 2 1
ID is a counter, the other fields have values going from 1 to 5, what should
I do to get a query that counts all the results for each "f", something like:
f1 f2 f3 f4 ....
1 1 2 1 3
2 2 0 2 0
3 0 0 1 1
4 0 1 0 0
5 1 1 0 0
Thank you