Reputation: 36816
I have a WebSQL Sqlite database on a Android device via PhoneGap. I want to run a query to delete all rows where the Id is not an integer. So I would like to run something like
DELETE FROM Client WHERE NOT IsInt(Id)
Is there an easy way to do this?
Upvotes: 0
Views: 138