Hi there,
here goes a short HU stop list SQL; it's tested and OK.
It is short because the hungarian grammar is inflective, e.g. while "me"
is "�n", "to me" is "nekem", etc., so a hungarian stop list will have a
limited usefulness.
regards,
--
MURANYI Andras - [EMAIL PROTECTED]
Informaciotechnologiai Tanacsado - IT Advisor
IQ Consulting - http://www.iqconsulting.hu/
# This is script for MySQL
# to create hungarian stop-list
# note: hungarian has inflective grammar,
# so your stop-list will have little use
# use: "mysql database <stop.hu.txt"
#
INSERT INTO stopword(lang, word) VALUES ('hu', 'a');
INSERT INTO stopword(lang, word) VALUES ('hu', 'az');
INSERT INTO stopword(lang, word) VALUES ('hu', 'egy');
INSERT INTO stopword(lang, word) VALUES ('hu', 'be');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ki');
INSERT INTO stopword(lang, word) VALUES ('hu', 'le');
INSERT INTO stopword(lang, word) VALUES ('hu', 'fel');
INSERT INTO stopword(lang, word) VALUES ('hu', 'meg');
INSERT INTO stopword(lang, word) VALUES ('hu', 'el');
INSERT INTO stopword(lang, word) VALUES ('hu', '�t');
INSERT INTO stopword(lang, word) VALUES ('hu', 'r�');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ide');
INSERT INTO stopword(lang, word) VALUES ('hu', 'oda');
INSERT INTO stopword(lang, word) VALUES ('hu', 'sz�t');
INSERT INTO stopword(lang, word) VALUES ('hu', '�ssze');
INSERT INTO stopword(lang, word) VALUES ('hu', 'vissza');
INSERT INTO stopword(lang, word) VALUES ('hu', 'de');
INSERT INTO stopword(lang, word) VALUES ('hu', 'h�t');
INSERT INTO stopword(lang, word) VALUES ('hu', '�s');
INSERT INTO stopword(lang, word) VALUES ('hu', 'vagy');
INSERT INTO stopword(lang, word) VALUES ('hu', 'hogy');
INSERT INTO stopword(lang, word) VALUES ('hu', 'van');
INSERT INTO stopword(lang, word) VALUES ('hu', 'lesz');
INSERT INTO stopword(lang, word) VALUES ('hu', 'volt');
INSERT INTO stopword(lang, word) VALUES ('hu', 'csak');
INSERT INTO stopword(lang, word) VALUES ('hu', 'nem');
INSERT INTO stopword(lang, word) VALUES ('hu', 'igen');
INSERT INTO stopword(lang, word) VALUES ('hu', 'mint');
INSERT INTO stopword(lang, word) VALUES ('hu', '�n');
INSERT INTO stopword(lang, word) VALUES ('hu', 'te');
INSERT INTO stopword(lang, word) VALUES ('hu', '�');
INSERT INTO stopword(lang, word) VALUES ('hu', 'mi');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ti');
INSERT INTO stopword(lang, word) VALUES ('hu', '�k');
INSERT INTO stopword(lang, word) VALUES ('hu', '�n');