Einlesen einer Datei im XML, CSV oder Textformat und einfügen in einer MySQL Tabelle
Beispiel für eine XML Datei
1 2 3 |
LOAD XML LOCAL INFILE 'person.xml' INTO TABLE person ROWS IDENTIFIED BY '<person>'; |
1 2 3 |
LOAD XML LOCAL INFILE 'D:/Datenbanken/20110722.xml' REPLACE INTO TABLE import_table ROWS IDENTIFIED BY '<item>'; |
Beispiel zum einlesen einer Textdatei
1 2 3 |
LOAD DATA LOCAL INFILE '/pfad/zur/textdatei' REPLACE INTO TABLE my_table FIELDS TERMINATED BY '\t'; |
Ausgabe in einer Datei speichern
1 2 3 4 |
SELECT * FROM my_table GROUP BY word ORDER BY word ASC INTO OUTFILE 'M:\\Datenbanken\\output.txt' |