Hi,
Please consider simple example of developer/2000 Form6i and emp table.

I want to display record according to the below sample. Can any one help how it is possible count(*) in Form.
e.g
deptno 10
# of emp 3


**** I know how to check in Reports but how it is possible in FORM, no idea.

SQL> select deptno, count(*) no_of_emp from emp
group by deptno;

DEPTNO NO_OF_EMP
--------- ---------
10 3
20 5
30 6

Thanks in advance.