Enter a query, then click the execute button or press F9 to run
it.
CREATE TABLE people ( first_name text NOT NULL, last_name text NOT NULL );
INSERT INTO people (first_name, last_name) VALUES ('John', 'Doe');
SELECT rowid, first_name, last_name FROM people;
DROP TABLE people; CREATE TABLE people ( person_id INTEGER PRIMARY KEY, first_name text NOT NULL, last_name text NOT NULL );
INSERT INTO people ( person_id, first_name, last_name ) VALUES ( 9223372036854775807, 'Johnathan', 'Smith' );
INSERT INTO people ( first_name, last_name ) VALUES ( 'William', 'Gate' );
DROP TABLE people; CREATE TABLE people ( person_id INTEGER PRIMARY KEY AUTOINCREMENT, first_name text NOT NULL, last_name text NOT NULL );
INSERT INTO people ( person_id, first_name, last_name ) VALUES ( 9223372036854775807, 'Johnathan', 'Smith' );
INSERT INTO people ( first_name, last_name ) VALUES ( 'John', 'Smith' );