| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- CREATE TABLE nouns (word TEXT NOT NULL);
- CREATE TABLE verbs (word TEXT NOT NULL);
- CREATE TABLE adjectives (word TEXT NOT NULL);
- INSERT INTO nouns(word) VALUES
- ('cloud'),
- ('elephant'),
- ('gø language'),
- ('laptøp'),
- ('cøntainer'),
- ('micrø-service'),
- ('turtle'),
- ('whale'),
- ('gøpher'),
- ('møby døck'),
- ('server'),
- ('bicycle'),
- ('viking'),
- ('mermaid'),
- ('fjørd'),
- ('legø'),
- ('flødebolle'),
- ('smørrebrød');
- INSERT INTO verbs(word) VALUES
- ('will drink'),
- ('smashes'),
- ('smøkes'),
- ('eats'),
- ('walks tøwards'),
- ('løves'),
- ('helps'),
- ('pushes'),
- ('debugs'),
- ('invites'),
- ('hides'),
- ('will ship');
- INSERT INTO adjectives(word) VALUES
- ('the exquisite'),
- ('a pink'),
- ('the røtten'),
- ('a red'),
- ('the serverless'),
- ('a brøken'),
- ('a shiny'),
- ('the pretty'),
- ('the impressive'),
- ('an awesøme'),
- ('the famøus'),
- ('a gigantic'),
- ('the gløriøus'),
- ('the nørdic'),
- ('the welcøming'),
- ('the deliciøus');
|