laravelrules验证(CSV、Sql)讲解

csv

提前把csv文件格式准备好。

导入文件前查看mysql根目录下的my.ini,查看secure_file_priv配置,导入的csv文件需要在该配置参数目录下。可设置为空后重启服务器,导入文件就可以随意放置。

use test;
set names utf8;
load data infile "your csv file path" into table tablename fields terminated by ','

sql

use test;
set names utf8;
source d:/dbname.sql;//注意路径反斜杠,通常与赋值的路径相反,所欲大写换小写。
(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐