# This is script for MySQL
# to create the Dutch stop-list 
# use: "mysql database <stop.nl.txt"
# 
# Theo Vosse (theo@dmo.com) and Stan P. van de Burgt (stan@dmo.com)
#

INSERT INTO stopword VALUES ('de');
INSERT INTO stopword VALUES ('het');
INSERT INTO stopword VALUES ('van');
INSERT INTO stopword VALUES ('en');
INSERT INTO stopword VALUES ('een');
INSERT INTO stopword VALUES ('in');
INSERT INTO stopword VALUES ('dat');
INSERT INTO stopword VALUES ('te');
INSERT INTO stopword VALUES ('ik');
INSERT INTO stopword VALUES ('hij');
INSERT INTO stopword VALUES ('die');
INSERT INTO stopword VALUES ('is');
INSERT INTO stopword VALUES ('met');
INSERT INTO stopword VALUES ('ze');
INSERT INTO stopword VALUES ('was');
INSERT INTO stopword VALUES ('als');
INSERT INTO stopword VALUES ('aan');
INSERT INTO stopword VALUES ('er');
INSERT INTO stopword VALUES ('je');
INSERT INTO stopword VALUES ('ook');
INSERT INTO stopword VALUES ('dan');
INSERT INTO stopword VALUES ('of');
INSERT INTO stopword VALUES ('had');
INSERT INTO stopword VALUES ('bij');
INSERT INTO stopword VALUES ('wat');
INSERT INTO stopword VALUES ('uit');
INSERT INTO stopword VALUES ('nog');
INSERT INTO stopword VALUES ('hem');
INSERT INTO stopword VALUES ('tot');
INSERT INTO stopword VALUES ('zo');
INSERT INTO stopword VALUES ('zij');
INSERT INTO stopword VALUES ('zou');
INSERT INTO stopword VALUES ('we');
INSERT INTO stopword VALUES ('al');
INSERT INTO stopword VALUES ('dit');
INSERT INTO stopword VALUES ('wel');
INSERT INTO stopword VALUES ('kan');
INSERT INTO stopword VALUES ('hun');
INSERT INTO stopword VALUES ('nu');
INSERT INTO stopword VALUES ('zei');
INSERT INTO stopword VALUES ('men');
INSERT INTO stopword VALUES ('me');
INSERT INTO stopword VALUES ('mij');
INSERT INTO stopword VALUES ('zal');
INSERT INTO stopword VALUES ('heb');
INSERT INTO stopword VALUES ('hoe');
INSERT INTO stopword VALUES ('ons');
INSERT INTO stopword VALUES ('wij');
INSERT INTO stopword VALUES ('af');
