wn.sqltemplates.mysql.create.words-create.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tosql Show documentation
Show all versions of tosql Show documentation
Export Wordnet model to SQL files.
The newest version!
CREATE TABLE ${words.table} (
${words.wordid} INT NOT NULL,
${words.word} VARCHAR(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_as_ci NOT NULL
)
DEFAULT CHARSET=utf8mb4;