BEGIN TRANSACTION;

/* Create a table called NAMES */
CREATE TABLE CLASS(Id integer PRIMARY KEY, Characteristics text);

/* Create few records in this table */
INSERT INTO CLASS VALUES(1,'Noisy');
INSERT INTO CLASS VALUES(2,'Silent');
INSERT INTO CLASS VALUES(3,'Bonding');


COMMIT;

/* Display all the records from the table */
SELECT * FROM CLASS;

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: