简介
这是工作中用到的一个小工具,将Excel(xlsx)表导入MysqL表中,用Golang写的,每条记录单独一条 goroutine
处理,提高效率。支持随机数生成、密码生成、时间戳;支持关联查询、附表操作等。
使用方法
使用Go编译安装或直接下载:https://github.com/TargetLiu/xlsxtomysql/releases
DSN
格式:
[username[:password]@][protocol[(address)]]/dbname[?param1=value1&...¶mN=valueN]
示例:
root:123@tcp(127.0.0.1:3306)/dbname
注意:
Linux、Mac下可能需要输入 \( \)
Excel表导入结构说明
Excel截图
关于作者
GitHub:https://github.com/TargetLiu
原文链接:https://www.f2er.com/go/189392.html