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'