wn.sqltemplates.sqlite.create.adjpositions-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 ${adjpositions.table} (
${adjpositions.positionid} CHARACTER (1) CHECK( ${adjpositions.positionid} IN ('a','p','ip') ) NOT NULL,
${adjpositions.position} VARCHAR(24) NOT NULL
)
;