News

sqlite> create table TASKS (id integer primary key, name varchar); sqlite> .tables TASKS sqlite> .schema CREATE TABLE TASKS (id integer primary key, name varchar); Create SQLite records with SQL The ...