19 lines
552 B
MySQL
19 lines
552 B
MySQL
|
PRAGMA foreign_keys = OFF;
|
||
|
|
||
|
|
||
|
DROP TABLE IF EXISTS "main"."words";
|
||
|
CREATE TABLE "words" (
|
||
|
"user" TEXT NOT NULL,
|
||
|
"word" TEXT NOT NULL
|
||
|
);
|
||
|
|
||
|
|
||
|
INSERT INTO "main"."words" VALUES ('jack', 'numb');
|
||
|
INSERT INTO "main"."words" VALUES ('jack', 'faint');
|
||
|
INSERT INTO "main"."words" VALUES ('alice', 'tube');
|
||
|
INSERT INTO "main"."words" VALUES ('alice', 'cake');
|
||
|
INSERT INTO "main"."words" VALUES ('tom', 'kite');
|
||
|
INSERT INTO "main"."words" VALUES ('tom', 'fly');
|
||
|
INSERT INTO "main"."words" VALUES ('jack', 'be');
|
||
|
INSERT INTO "main"."words" VALUES ('jack', 'fly');
|