mysql Load Data InFile 的用法。本站提示廣大學習愛好者:(mysql Load Data InFile 的用法)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql Load Data InFile 的用法正文
起首創立一個表
Use Test;
Create Table TableTest(
`ID` mediumint(8) default '0',
`Name` varchar(100) default ''
) TYPE=MyISAM;
向數據表導入數據
Load Data InFile 'C:/Data.txt' Into Table `TableTest`
經常使用以下:
Load Data InFile 'C:/Data.txt' Into Table `TableTest` Lines Terminated By '\r\n';
這個語句,字段默許用制表符離隔,每筆記錄用換行符離隔,在Windows下換行符為“\r\n”
C:/Data.txt 文件內容以下面兩行:
1 A
2 B
“1”和“A”之間有一個制表符
如許就導進兩筆記錄了。
自界說語法
Load Data InFile 'C:/Data.txt' Into Table `TableTest` Fields Terminated By ',' Enclosed By '"' Escaped By '"' Lines Terminated By '\r\n';
Fields Terminated By ',' Enclosed By '"' Escaped By '"'
表現每一個字段用逗號離開,內容包括在雙引號內
Lines Terminated By '\r\n';
表現每條數據用換行符離開
和 Load Data InFile 相反的是
Select * From `TableTest` Into OutFile 'C:/Data_OutFile.txt';
把表的數據導出