file函數作用:
mysql中file函數的作用是用于讀取一個文件并將其內容作為字符串返回。
file函數語法:
load_file(file_name) as ontent;
參數:
file_name:需要讀取文件的路徑。
ontent:需要返回文件的內容。
file函數使用方法:
SELECT LOAD_FILE('c:/data/test.txt') as pink;
輸出結果為:
+---------------------------------------------+
| pink |
+---------------------------------------------+
| This is the content of the pink in the file |
+---------------------------------------------+