Hello,
i have used the following statement but the count doesn't return a correct value, could any one help me please.
SELECT IT_BE.Name, Count(IT_BE.row Nr) AS Nr
FROM IT_BE
GROUP BY IT_BE.Name;
I have three records in the table(IT_BE) but i become 1 as Nr instead of 3. What am i doing wrong?
thanks in advance.
Best regards,
Maryan
i have used the following statement but the count doesn't return a correct value, could any one help me please.
SELECT IT_BE.Name, Count(IT_BE.row Nr) AS Nr
FROM IT_BE
GROUP BY IT_BE.Name;
I have three records in the table(IT_BE) but i become 1 as Nr instead of 3. What am i doing wrong?
thanks in advance.
Best regards,
Maryan
Comment