You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sqlite> .table
ancestor pos_def synlink synset_def variant xlink
link_def sense synset synset_ex word
show rows in a table
sqlite> select * from word limit 3;
1|eng|expletive||n
2|eng|measles||n
3|eng|contras||n
sqlite> select * from word where lang='jpn' limit 3;
155288|jpn|頭金||n
155289|jpn|どうにかこうにか||r
155290|jpn|大砲||n
show the table schema
sqlite> .schema word
CREATE TABLE word (wordid integer primary key,
lang text,
lemma text,
pron text,
pos text);
CREATE INDEX word_id_idx ON word (wordid);
CREATE INDEX word_lemma_idx ON word (lemma);
sqlite> .exit