Advertisement
Guest User

kbbb

a guest
Mar 2nd, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1.  
  2. CREATE TABLE IF NOT EXISTS `Fibonacci` (
  3. `id` int(11) NOT NULL,
  4. `valoare` int(11) NOT NULL
  5. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  6.  
  7. INSERT INTO `Fibonacci` (`id`, `valoare`) VALUES
  8. (1, 2),
  9. (2, 3),
  10. (3, 5),
  11. (4, 8),
  12. (5, 13),
  13. (6, 21),
  14. (7, 34),
  15. (8, 55),
  16. (9, 89),
  17. (10, 144),
  18. (11, 233),
  19. (12, 377),
  20. (13, 610),
  21. (14, 987);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement