# 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)
#

# Words that appear in other languages
INSERT INTO stopword(lang, word) VALUES ('', 'de');


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