先使用如下代碼建立一個表:mysql
1 mysql> CREATE TABLE pet (name VARCHAR(20), owner VARCHAR(20), 2 species VARCHAR(20), sex CHAR(1), birth DATE, death DATE);
而後將如下數據寫入一個pet.txt文本中:sql
Fluffy Harold cat f 1993-02-04 \N
Claws Gwen cat m 1994-03-17 \N
Buffy Harold dog f 1989-05-13 \N
Fang Benny dog m 1990-08-27 \N
Bowser Diane dog m 1979-08-31 1995-07-29
Chirpy Gwen bird f 1998-09-11 \N
Whistler Gwen bird \N 1997-12-09 \N
Slim Benny snake m 1996-04-29 \N數據庫
使用如下命令實現導入數據庫:this
1 mysql> LOAD DATA LOCAL INFILE '/path/pet.txt' INTO TABLE pet; spa
途中遇到了一個問題:code
出現錯誤顯示 ERROR 1148 (42000): The used command is not allowed with this MySQL versionblog
緣由:local_infile變量處於OFF 須要手動將其置於ONci
1 mysql> SET GLOBAL local_infile=1; it
完成後便可獲得結果:io