If I open my Core Data database with sqlite3, I can run the following SQL commands and get the results needed.
sqlite> select count(*) from ZPROFILEITEMS;
15
The same goes for the SUM() function:
sqlite> select SUM(ZPROFILEITEMSSONGORDER) from ZPROFILEITEMS;
120
How can I accomplish the same in Core Data?
Thanks in advance
-Paul