CREATE TABLE user (id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL, status TEXT NOT NULL); INSERT INTO user (name, status) VALUES ("Arya", "A girl is Arya Stark of Winterfell, and I'm going home."); INSERT INTO user (name, status) VALUES ("Sansa", "I did what I had to do to survive, my lady. But I am a Stark, I will always be a Stark."); INSERT INTO user (name, status) VALUES ("Jon", "And all was black and still, and black and cold, and black and dead, and black"); INSERT INTO user (name, status) VALUES ("Daenerys", "Dracarys!"); INSERT INTO user (name, status) VALUES ("Tyrion", "A mind needs books like a sword needs a whetstone."); INSERT INTO user (name, status) VALUES ("Jorah", "The common people pray for rain, healthy children, and a summer that never ends. It is no matter to them if the high lords play their game of thrones, so long as they are left in peace. They never are."); INSERT INTO user (name, status) VALUES ("Samwell", "You're better than me in everything. Except reading."); INSERT INTO user (name, status) VALUES ("Cersei", "Every breath you draw in my presence annoys me"); INSERT INTO user (name, status) VALUES ("Jamie", "The things I do for love."); CREATE TABLE hobbies (id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL, description TEXT NOT NULL); INSERT INTO hobbies (name, description) VALUES ("Sword Master", "Exceptional at using swords"); INSERT INTO hobbies (name, description) VALUES ("Megalomaniac", "Loves power and despises losing it!"); INSERT INTO hobbies (name, description) VALUES ("Book Worm", "Prefers to read books to sharpen their mind instead of sharping their sword.");