Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过 PhoneGap 在 Android 设备上有一个 WebSQL Sqlite 数据库。我想运行一个查询来删除 Id 不是整数的所有行。所以我想运行类似的东西
DELETE FROM Client WHERE NOT IsInt(Id)
是否有捷径可寻?
使用typeof:
DELETE FROM Client WHERE typeof(Id) <> 'integer'