I have never used NOT
in a query so I don't know if this is right.
Cursor c = getActivity().getContentResolver().query(Games.TOTALS_URI,
new String[] {Games.TOTALS_FRAME_TOTAL},
Games.TOTALS_FRAME_NUM+"=10"+" AND "+Games.TOTALS_FRAME_TOTAL+" NOT 0",null,null);
I want to get a value only if it is not 0
or even > 0
so would that be right?