文件(csv/xslx)中的数据导入到数据库中

Posted zhengze

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件(csv/xslx)中的数据导入到数据库中相关的知识,希望对你有一定的参考价值。

*.sql文件导入数据库通常比较方便。

其他格式如csv、xsl等文件导入比较费劲。

推荐一个针对csvxsl的导入工具:https://github.com/zhengze/file_to_db.git

具体用法请看README:

load data from csv/xlsx into database(mysql/postgresql)

INSTALL

  • pipenv install #或者
  • pip install -r requirements.txt

CONFIG

  • $sudo touch .env
DATABASE_URI=postgresql+psycopg2://admin:1234@localhost/test

USAGE

  • python file_to_db.py -h
usage: file_to_db.py [-h] [--file FILE] [--table TABLE]

optional arguments:
  -h, --help            show this help message and exit
  --file FILE, -f FILE  the file path.
  --table TABLE, -t TABLE
                        the table name.

以上是关于文件(csv/xslx)中的数据导入到数据库中的主要内容,如果未能解决你的问题,请参考以下文章

使用navicat怎样导入数据库

用 Eclipse 下载 Git 仓库中代码

vim中代码多行删除

Eclipse中代码报版本错误

Python实现MySQL数据库连接---pymysql

js中如何取得jsp中的List;例如下边jsp中代码,代码简单写的,只要具体的解决方法,最好有代码实例