H
hui
in access I have a table that have 4 columns,
deptID, employeeID, wage,bonus
every row in deptID and employeeID are stored in data, but in wage and bonus
column, some are empty. when I run the SQL:
select deptID,sum(wage+bonus) as pay from TableName group by deptID
the PAY column is empty or only zero in it.
why?
thank you for your help.
hui
deptID, employeeID, wage,bonus
every row in deptID and employeeID are stored in data, but in wage and bonus
column, some are empty. when I run the SQL:
select deptID,sum(wage+bonus) as pay from TableName group by deptID
the PAY column is empty or only zero in it.
why?
thank you for your help.
hui