时间:2022-12-06 01:49
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 |
+---------------------------------------------+