Advertisement
Strider64

the_daily_ten

Sep 26th, 2016
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 3.04 KB | None | 0 0
  1. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  2. SET time_zone = "+00:00";
  3.  
  4. --
  5. -- Database: `jrpepp`
  6. --
  7.  
  8. -- --------------------------------------------------------
  9.  
  10. --
  11. -- Table structure for table `the_daily_ten`
  12. --
  13.  
  14. CREATE TABLE `the_daily_ten` (
  15.   `id` int(11) NOT NULL,
  16.   `q_num` int(11) NOT NULL,
  17.   `question` text,
  18.   `answer1` char(100) DEFAULT NULL,
  19.   `answer2` char(100) DEFAULT NULL,
  20.   `answer3` char(100) DEFAULT NULL,
  21.   `answer4` char(100) DEFAULT NULL,
  22.   `correct` int(1) DEFAULT NULL,
  23.   `play_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
  24. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  25.  
  26. --
  27. -- Dumping data for table `the_daily_ten`
  28. --
  29.  
  30. INSERT INTO `the_daily_ten` (`id`, `q_num`, `question`, `answer1`, `answer2`, `answer3`, `answer4`, `correct`, `play_date`) VALUES
  31. (961, 1, 'Who protrayed Mr. Kesuke Miyagi in "The Karate Kid"?', 'Pat Morita', 'Raph Macchio', 'George Takei', 'Masi Oka', 1, '2016-09-26 00:00:00'),
  32. (962, 2, 'A young boy is arrested for writing a computer virus and is banned from using a computer until his 18th Birthday. What is the name of the movie?', 'The Net', 'Hackers', 'War Games', 'Code Breakers', 2, '2016-09-26 00:00:00'),
  33. (963, 3, 'What was Patrick Swayze last movie before his untimely death?', 'Power Blue', 'Road House', 'Dirty Dancing', 'Ghost', 1, '2016-09-26 00:00:00'),
  34. (964, 4, 'Who played Elliot in E.T.: The Extra-Terrestrial?', 'C. Thomas Howell', 'Matt Dillion', 'Henry Thomas', 'Patrick Swayze', 3, '2016-09-26 00:00:00'),
  35. (965, 5, 'A talented pool hustler has stayed out of the game for years, must go back to his old ways when his little brother gets involved with his enemy, the very man who held him back from greatness. Name this movie?', 'The Color of Money', 'Matchstick Men', 'Poolhall Junkies', 'The Hustler', 3, '2016-09-26 00:00:00'),
  36. (966, 6, 'What movie did Dennis Hopper make his debut in?\r', 'Rebel Without a Cause', 'True Grit', 'Speed', 'Easy Rider', 1, '2016-09-26 00:00:00'),
  37. (967, 7, 'Who starred in "The Long, Long Trailer"?', 'Katharine Hepburn and Humphrey Bogart', 'Cary Grant and Rosalind Russell', 'Desi Arnaz and Lucille Ball', 'Cary Grant and Lucille Ball', 3, '2016-09-26 00:00:00'),
  38. (968, 8, 'What was Gary Sinise Character\'s name in "Forrest Gump"?\r\n', 'LT. John Taylor', 'LT. Mike Taylor', 'LT. Tony Taylor', 'LT. Dan Taylor', 4, '2016-09-26 00:00:00'),
  39. (969, 9, 'The Mummy and The Mummy Returns two main stars are?\r', 'Tom Hanks and Rachel Weisz', 'Harrison Ford and Rachel Weisz', 'Tom Hanks and Meg Ryan', 'Brendan Fraser and Rachel Weisz', 4, '2016-09-26 00:00:00'),
  40. (970, 10, 'Who was the actor portrayed Gimli in the "Lord of the Rings" trilogy?\r', 'Elijah Wood', 'John Rhys-Davis', 'Ian McKellan', 'Sean Astin', 2, '2016-09-26 00:00:00');
  41.  
  42. --
  43. -- Indexes for dumped tables
  44. --
  45.  
  46. --
  47. -- Indexes for table `the_daily_ten`
  48. --
  49. ALTER TABLE `the_daily_ten`
  50.   ADD PRIMARY KEY (`id`);
  51.  
  52. --
  53. -- AUTO_INCREMENT for dumped tables
  54. --
  55.  
  56. --
  57. -- AUTO_INCREMENT for table `the_daily_ten`
  58. --
  59. ALTER TABLE `the_daily_ten`
  60.   MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=971;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement