-- Create a table

CREATE TABLE hello (
 name TEXT NOT NULL);

-- Insert vaules
INSERT INTO hello VALUES ("Hello, world!");

-- Select some values
SELECT * FROM hello WHERE name = 'Hello, world!';

Embed on website

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