words.sql 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. CREATE TABLE nouns (word TEXT NOT NULL);
  2. CREATE TABLE verbs (word TEXT NOT NULL);
  3. CREATE TABLE adjectives (word TEXT NOT NULL);
  4. INSERT INTO nouns(word) VALUES
  5. ('cloud'),
  6. ('elephant'),
  7. ('gø language'),
  8. ('laptøp'),
  9. ('cøntainer'),
  10. ('micrø-service'),
  11. ('turtle'),
  12. ('whale'),
  13. ('gøpher'),
  14. ('møby døck'),
  15. ('server'),
  16. ('bicycle'),
  17. ('viking'),
  18. ('mermaid'),
  19. ('fjørd'),
  20. ('legø'),
  21. ('flødebolle'),
  22. ('smørrebrød');
  23. INSERT INTO verbs(word) VALUES
  24. ('will drink'),
  25. ('smashes'),
  26. ('smøkes'),
  27. ('eats'),
  28. ('walks tøwards'),
  29. ('løves'),
  30. ('helps'),
  31. ('pushes'),
  32. ('debugs'),
  33. ('invites'),
  34. ('hides'),
  35. ('will ship');
  36. INSERT INTO adjectives(word) VALUES
  37. ('the exquisite'),
  38. ('a pink'),
  39. ('the røtten'),
  40. ('a red'),
  41. ('the serverless'),
  42. ('a brøken'),
  43. ('a shiny'),
  44. ('the pretty'),
  45. ('the impressive'),
  46. ('an awesøme'),
  47. ('the famøus'),
  48. ('a gigantic'),
  49. ('the gløriøus'),
  50. ('the nørdic'),
  51. ('the welcøming'),
  52. ('the deliciøus');