Reputation: 321
I'm having problems finding examples of sqlite3 queries. The diagrams in the documentation are useless. I want to say...
delete from food_post where ip_address=190.17.107.106;
I keep getting a syntax error, though. :/
Upvotes: 0
Views: 138
Reputation: 12797
Possibly because of multiple periods in your number. Instead try
delete from food_post where ip_address="190.17.107.106";
Upvotes: 2