user422318
user422318

Reputation: 321

Performing SQLite Queries

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

Answers (1)

John Smith
John Smith

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

Related Questions