在 sqflite 中从 table 列检索具有非空字符串值的行
Retrieve row from a table column with a value other than empty string in sqflite
我想检索 table 的行,其中列(在我的例子中称为 'notes')包含除空字符串以外的任何值。
我已经尝试了下面的代码,但没有成功。
final res = await db.rawQuery("SELECT * FROM $tableName WHERE notes=?", [!null]);
Is there any way i can retrieve rows? Any hint will be appreciated. Thanks
你试过了吗db.rawQuery("SELECT * FROM $tableName WHERE notes!=?", [""])
?
我想检索 table 的行,其中列(在我的例子中称为 'notes')包含除空字符串以外的任何值。
我已经尝试了下面的代码,但没有成功。
final res = await db.rawQuery("SELECT * FROM $tableName WHERE notes=?", [!null]);
Is there any way i can retrieve rows? Any hint will be appreciated. Thanks
你试过了吗db.rawQuery("SELECT * FROM $tableName WHERE notes!=?", [""])
?