我试图在我的应用程序上删除SQLite数据库中的行。 此代码为“Where field value equal”
mydatabase.delete("potentials", "stage=?", new String[]{"Ready for Install"});
但我需要“场地价值不平等”
mydatabase.delete("potentials", "stage!=?", new String[]{"Ready for Install"});
和
mydatabase.delete("potentials", "stage<>?", new String[]{"Ready for Install"});
我尝试了这段代码,但它不起作用
试试这个功能:
public void DeletePostbyId(int id) {
SQLiteDatabase db = this.getWritableDatabase();
db.execSQL("DELETE FROM " + TABLE_CHECK + " WHERE " + ID + "!='" + id + "'");
db.close();
//db.delete(TABLE_CAT, CAT_ID + "= ?", new String[]{String.valueOf(catid)});
}
你应该在比较器中使用不等运算符:“stage!=?”或“阶段<>?”。
mydatabase.delete(“potential”,“stage <>?”,new String [] {“Ready for Install”});
您的查询没有任何问题。它可能在这里失败的原因是字母案例......试试这个
mydatabase.delete("potentials", "upper(stage) != ?", new String[]{"READY FOR INSTALL"});
另请注意upper(stage)
附近的间距