0
CREATE TABLE IF NOT EXISTS developer (id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT, skill TEXT, yearsOfExperience INTEGER );
INSERT INTO developer(name, skill, yearsOfExperience) VALUES ('Simon', 'Ionic', '4');
INSERT INTO developer(name, skill, yearsOfExperience) VALUES ('Jorge', 'Firebase', '2');
INSERT INTO developer(name, skill, yearsOfExperience) VALUES ('Max', 'Startup', '5');

error:

Incorrect syntax near 'IF', Expecting'.', ID, or QOUTED_ID.

An expression of non-boolean type specified in a context where a condition is expected.

Incorrect syntax near 'developer'.

Incorrect syntax near 'developer'. Expecting '('.

Incorrect syntax near 'id'. Expecting '(' or SELECT.

0 Answers0