最佳答案
Cursor findNormalItems = db.query("items", columns, "type=?",
new String[] { "onSale" });
I want to return the cursor that points anything that are NOT onSale, what should I change? Thanks!