I have the following query:
Select
txtName ,
sum(numPrice) as numTotalPrice
from tblProducts
Group by txtName
The error i am getting is: You tried to execute a query that does not include the specified expresseion 'txtName' as part of an aggregate function. It works great in ms sql server..
Any suggestions?
Thanks
Select
txtName ,
sum(numPrice) as numTotalPrice
from tblProducts
Group by txtName
The error i am getting is: You tried to execute a query that does not include the specified expresseion 'txtName' as part of an aggregate function. It works great in ms sql server..
Any suggestions?
Thanks