You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
4.0 KiB
SQL
63 lines
4.0 KiB
SQL
-- Sample data for Know Foolery
|
|
-- This file contains initial themes and questions for testing
|
|
|
|
-- Insert sample themes
|
|
INSERT OR IGNORE INTO themes (id, name, description) VALUES
|
|
(1, 'Geography', 'Questions about countries, capitals, and landmarks'),
|
|
(2, 'Science', 'General science and nature questions'),
|
|
(3, 'History', 'Historical events and figures'),
|
|
(4, 'Literature', 'Books, authors, and literary works'),
|
|
(5, 'Movies', 'Films, actors, and cinema'),
|
|
(6, 'Sports', 'Sports, teams, and athletes'),
|
|
(7, 'Music', 'Musicians, songs, and musical knowledge'),
|
|
(8, 'Art', 'Artists, paintings, and art movements');
|
|
|
|
-- Insert sample questions
|
|
INSERT OR IGNORE INTO questions (theme_id, question_text, correct_answer, hint, difficulty_level) VALUES
|
|
-- Geography questions
|
|
(1, 'What is the capital of France?', 'Paris', 'Known as the City of Light', 1),
|
|
(1, 'Which is the largest country in the world by land area?', 'Russia', 'Spans across Europe and Asia', 2),
|
|
(1, 'What is the longest river in the world?', 'Nile', 'Flows through northeastern Africa', 2),
|
|
(1, 'Which mountain range contains Mount Everest?', 'Himalayas', 'Located between India and Tibet', 3),
|
|
|
|
-- Science questions
|
|
(2, 'What is the chemical symbol for gold?', 'Au', 'Comes from the Latin word "aurum"', 2),
|
|
(2, 'How many bones are in the adult human body?', '206', 'Babies are born with about 270 bones', 3),
|
|
(2, 'What gas do plants absorb from the atmosphere?', 'Carbon dioxide', 'Essential for photosynthesis', 1),
|
|
(2, 'What is the speed of light in a vacuum?', '299,792,458 meters per second', 'Often rounded to 300,000 km/s', 4),
|
|
|
|
-- History questions
|
|
(3, 'In which year did World War II end?', '1945', 'The same year the atomic bombs were dropped', 2),
|
|
(3, 'Who was the first person to walk on the moon?', 'Neil Armstrong', 'Apollo 11 mission commander', 2),
|
|
(3, 'Which ancient wonder was located in Alexandria?', 'Lighthouse of Alexandria', 'Also known as the Pharos of Alexandria', 3),
|
|
(3, 'What year did the Berlin Wall fall?', '1989', 'Led to German reunification', 3),
|
|
|
|
-- Literature questions
|
|
(4, 'Who wrote "Romeo and Juliet"?', 'William Shakespeare', 'English playwright from the 16th century', 1),
|
|
(4, 'What is the first book in the Harry Potter series?', 'Harry Potter and the Philosopher''s Stone', 'Called "Sorcerer''s Stone" in the US', 2),
|
|
(4, 'Who wrote "1984"?', 'George Orwell', 'Published in 1949', 2),
|
|
(4, 'Which novel begins with "Call me Ishmael"?', 'Moby Dick', 'Written by Herman Melville', 3),
|
|
|
|
-- Movies questions
|
|
(5, 'Which movie won the Academy Award for Best Picture in 1994?', 'Forrest Gump', 'Starred Tom Hanks', 3),
|
|
(5, 'Who directed the movie "Jaws"?', 'Steven Spielberg', 'Released in 1975', 2),
|
|
(5, 'What is the highest-grossing film of all time?', 'Avatar', 'Directed by James Cameron', 2),
|
|
(5, 'In which movie does the character say "May the Force be with you"?', 'Star Wars', 'Space opera franchise', 1),
|
|
|
|
-- Sports questions
|
|
(6, 'How many players are on a basketball team on the court at one time?', '5', 'Each position has a specific role', 1),
|
|
(6, 'Which country has won the most FIFA World Cups?', 'Brazil', 'South American football powerhouse', 2),
|
|
(6, 'In tennis, what does the term "love" mean?', '0', 'Zero points in tennis scoring', 2),
|
|
(6, 'How long is a marathon race?', '42.195 kilometers', 'Also 26.2 miles', 3),
|
|
|
|
-- Music questions
|
|
(7, 'Which instrument has 88 keys?', 'Piano', 'Black and white keys', 1),
|
|
(7, 'Who composed "The Four Seasons"?', 'Antonio Vivaldi', 'Italian Baroque composer', 3),
|
|
(7, 'Which band released the album "Abbey Road"?', 'The Beatles', 'British rock band from Liverpool', 2),
|
|
(7, 'What does "forte" mean in music?', 'Loud', 'Italian musical term', 2),
|
|
|
|
-- Art questions
|
|
(8, 'Who painted the Mona Lisa?', 'Leonardo da Vinci', 'Italian Renaissance artist', 1),
|
|
(8, 'In which museum is the Mona Lisa displayed?', 'Louvre', 'Located in Paris, France', 2),
|
|
(8, 'Who cut off his own ear?', 'Vincent van Gogh', 'Dutch post-impressionist painter', 2),
|
|
(8, 'Which artist is famous for the "Campbell''s Soup Cans"?', 'Andy Warhol', 'Pop art movement leader', 3); |